From 18696f6eecdbb53f5a0e084d14d19a7074c885c1 Mon Sep 17 00:00:00 2001 From: Tykayn Date: Sat, 5 Aug 2023 09:55:14 +0200 Subject: [PATCH] add typings in engine, object to test --- .../convert_to_osm_tags.ts | 20 +- .../data_other/testing/testing.json | 21 + .../mappings/converters/configIRVE.ts | 2 +- .../mappings/engine.ts | 145 +- .../mappings/mapping-config.type.ts | 3 +- mapping_geojson_to_osm_tags/mappings/utils.ts | 41 +- ...orne-présentes-dans-osm_france_entière.osm | 1 + ...stantes_présentes_dans_osm_2023-03-08.json | 204851 +++++++++++++++ .../tests/main.test.js | 74 +- 9 files changed, 205040 insertions(+), 118 deletions(-) create mode 100644 mapping_geojson_to_osm_tags/data_other/testing/testing.json create mode 100644 mapping_geojson_to_osm_tags/osm_output/borne-présentes-dans-osm_france_entière.osm create mode 100644 mapping_geojson_to_osm_tags/osm_output/bornes_irve_existantes_présentes_dans_osm_2023-03-08.json diff --git a/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts b/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts index 27c79d15..f9ccc51c 100644 --- a/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts +++ b/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts @@ -7,17 +7,19 @@ import mappingConfigIRVE from './mappings/converters/configIRVE' import mappingConfigIRVE_simple from './mappings/converters/mappingConfigIRVE_simple' import mapping_engine from './mappings/engine' import custom_utils from './mappings/utils' -import MappingConfigType from "./mappings/mapping-config.type"; -import {debugLog} from './mappings/utils.ts' +import MappingConfigType, {BoundingBoxCoordinatesType} from "./mappings/mapping-config.type"; +import utils from './mappings/utils.ts' + +const debugLog = utils.debugLog; let use_mappping_engine = false -// use_mappping_engine = true +use_mappping_engine = true let Mapping_engine = new mapping_engine(mappingConfigIRVE) let mini_arguments = minimist(process.argv.slice(2)) -// let sourceFileChargemapJson = './chargemap_data/hurepoix.json' + let sourceFilePathGeoJson = './etalab_data/small.json' // wip filter @@ -60,6 +62,7 @@ let pointCounterMax = 1000000 let limitConversionToFirstPoint = false // limitConversionToFirstPoint = true + if (limitConversionToFirstPoint) { pointCounterMax = 1 } @@ -162,7 +165,7 @@ function convertDataForIRVE (sourceFilePath, mapping: MappingConfigType, pointCo // write file on disk let fileNameToWrite = 'my_converted_data_set' + filteredName + '.json' console.log('write file ', fileNameToWrite) - writeFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) + utils.writeFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) debugLog('mapped output:', converted_geo_json.features) @@ -194,9 +197,9 @@ function mapElementFromConfSimple (featurePoint, mappingConfig) { if (mappingKeys.indexOf(pointKeyName) !== -1) { debugLog('found element', pointKeyName, '=>', mappingConfig[pointKeyName], 'value : ', featurePoint.properties[pointKeyName]) let convertedValue = '' - if (isBooleanKey(pointKeyName)) { + if ( utils.isBooleanKey(pointKeyName)) { - let copyOfValue = '' + featurePoint.properties[pointKeyName] + let copyOfValue :any = '' + featurePoint.properties[pointKeyName] if (typeof copyOfValue === typeof Object && copyOfValue.key_converted) { copyOfValue = copyOfValue.key_converted } @@ -223,7 +226,8 @@ if (use_mappping_engine) { } else { - convertDataForIRVE(sourceFilePathGeoJson, mappingConfigIRVE_simple, pointCounterMax, boundingBoxCoordinates) + mappingConfigIRVE = mappingConfigIRVE_simple + convertDataForIRVE(sourceFilePathGeoJson, mappingConfigIRVE, pointCounterMax, boundingBoxCoordinates) } diff --git a/mapping_geojson_to_osm_tags/data_other/testing/testing.json b/mapping_geojson_to_osm_tags/data_other/testing/testing.json new file mode 100644 index 00000000..eef03d82 --- /dev/null +++ b/mapping_geojson_to_osm_tags/data_other/testing/testing.json @@ -0,0 +1,21 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "nom_amenageur": "ELECTRA", + "siren_amenageur": "891624884", + "consolidated_commune": "S\u00e9r\u00e9zin-du-Rh\u00f4ne", + "consolidated_is_lon_lat_correct": true + } + } + ] +} diff --git a/mapping_geojson_to_osm_tags/mappings/converters/configIRVE.ts b/mapping_geojson_to_osm_tags/mappings/converters/configIRVE.ts index 4fd69d67..9481cf52 100644 --- a/mapping_geojson_to_osm_tags/mappings/converters/configIRVE.ts +++ b/mapping_geojson_to_osm_tags/mappings/converters/configIRVE.ts @@ -11,7 +11,7 @@ const MappingIRVE: MappingConfigType = { default_properties_of_point: { 'amenity': 'charging_station' }, - tags: { + tags : { // ******* nombres nbre_pdc: 'capacity', diff --git a/mapping_geojson_to_osm_tags/mappings/engine.ts b/mapping_geojson_to_osm_tags/mappings/engine.ts index 3fef9dcf..b297a4b1 100644 --- a/mapping_geojson_to_osm_tags/mappings/engine.ts +++ b/mapping_geojson_to_osm_tags/mappings/engine.ts @@ -2,19 +2,19 @@ import custom_utils from './utils' const {debugLog} = custom_utils -let listOfBooleanKeys = Object.keys({ - prise_type_ef: 'socket:typee', - prise_type_2: 'socket:type2', - prise_type_combo_ccs: 'socket:type2_combo', - prise_type_chademo: 'socket:chademo', - gratuit: 'fee', - paiement_acte: 'authentication:none', - paiement_cb: 'payment:credit_cards', - cable_t2_attache: 'socket:type2_cable', -}) +let listOfBooleanKeys = [ + "prise_type_ef", + "prise_type_2", + "prise_type_combo_ccs", + "prise_type_chademo", + "gratuit", + "paiement_acte", + "paiement_cb", + "cable_t2_attache" +] export default class { - mapping_config = {} + mapping_config: any = {} constructor(mappingConfig) { this.setConfig(mappingConfig) @@ -26,7 +26,7 @@ export default class { mapFeaturePoint(featurePointGeoJson) { - let geoJSONConvertedPoint = {} + let geoJSONConvertedPoint: any = {} geoJSONConvertedPoint.properties = {...this.mapping_config.default_properties_of_point} geoJSONConvertedPoint.type = featurePointGeoJson.type geoJSONConvertedPoint.geometry = featurePointGeoJson.geometry @@ -45,7 +45,7 @@ export default class { * @param pointKeyName * @returns {boolean} */ - isBooleanKey(pointKeyName):boolean { + isBooleanKey(pointKeyName): boolean { return listOfBooleanKeys.indexOf(pointKeyName) !== -1 } @@ -53,18 +53,23 @@ export default class { truthyValues = ['true', 'True', 'TRUE', '1', 1] falsyValues = ['false', 'False', 'FALSE', '0', 0] - filterFeaturesByOffset(offsetCount:number, listOfFeatures) : Array{ + /** + * reduce number of features + * @param offsetCount + * @param listOfFeatures + */ + filterFeaturesByOffset(offsetCount: number, listOfFeatures): Array { let filteredList = listOfFeatures // TODO return filteredList } - filterFeaturesByPropertyRegex(bboxConfig, listOfFeatures) { - console.log('bboxConfig', bboxConfig) - let filteredList = listOfFeatures - // TODO - return filteredList - } + // filterFeaturesByPropertyRegex(bboxConfig, listOfFeatures) { + // console.log('bboxConfig', bboxConfig) + // let filteredList = listOfFeatures + // // TODO + // return filteredList + // } filterFeaturesByPropertyRegex(propertyName, criteriaRegex, listOfFeatures) { let filteredList = listOfFeatures.filter(feature => { @@ -76,7 +81,7 @@ export default class { /** * retuns the converted element from mapping config if present, null otherwise */ - mapElementFromConf(featurePoint) { + mapElementFromConf(featurePoint: any) { if (!this.mapping_config) { throw new Error('no config was loaded in the mapping engine. use setConfig(my_mapping_config) on this instance of mapping engine before using this.') @@ -142,55 +147,55 @@ export default class { newProperties[this.mapping_config[pointKeyName]] = convertedValue } } else if (isConfigMappingObject) { - // let newKey = '' - // let configObject = valueConvertedFromMapping - // - // if (configObject.key_converted) { - // newKey = configObject.key_converted - // } - // - // /** - // * gestion des valeurs conditionnelles - // * nous pouvons renseigner une string ou un objet décrivant les transformations à réaliser - // */ - // if (configObject.conditional_values) { - // let keysConditionnalValues = Object.keys(configObject.conditional_values) - // let isFoundValue = keysConditionnalValues.indexOf(valueConvertedFromMapping) - // if (isFoundValue !== -1) { - // let conditionnalConfig = keysConditionnalValues[isFoundValue] - // - // if (conditionnalConfig.tags_to_add) { - // // on peut définir un ensemble de tags à rajouter - // newProperties.push(...conditionnalConfig.tags_to_add) - // } - // if (conditionnalConfig.truthy_value) { - // // convertir la valeur, si elle est truthy, la transformer en ce que donne la propriété truthy_value - // // exemple: le jeu de données dit que la colonne cable_t2_attache vaut "True", mais on veut le convertir en "1". - // // on met donc truthy_value: '1' - // if (this.truthyValues.indexOf(valueConvertedFromMapping) !== -1) { - // convertedValue = conditionnalConfig.truthy_value - // } - // } - // if (conditionnalConfig.falsy_value) { - // if (this.falsyValues.indexOf(valueConvertedFromMapping) !== -1) { - // convertedValue = conditionnalConfig.falsy_value - // } - // } - // if (conditionnalConfig.transform_function) { - // // une transformation de la valeur - // // apply transformation to value - // convertedValue = conditionnalConfig.transform_function(valueConvertedFromMapping) - // } - // // use the value converted - // else if (conditionnalConfig.value_converted) { - // convertedValue = conditionnalConfig.value_converted - // } - // } - // } - // - // if (newKey && !configObject.ignore_this_data) { - // newProperties[newKey] = convertedValue - // } + let newKey = '' + let configObject = valueConvertedFromMapping + + if (configObject.key_converted) { + newKey = configObject.key_converted + } + + /** + * gestion des valeurs conditionnelles + * nous pouvons renseigner une string ou un objet décrivant les transformations à réaliser + */ + if (configObject.conditional_values) { + let keysConditionnalValues = Object.keys(configObject.conditional_values) + let isFoundValue = keysConditionnalValues.indexOf(valueConvertedFromMapping) + if (isFoundValue !== -1) { + let conditionnalConfig :any = keysConditionnalValues[isFoundValue] + + if (conditionnalConfig.tags_to_add) { + // on peut définir un ensemble de tags à rajouter + newProperties.push(...conditionnalConfig.tags_to_add) + } + if (conditionnalConfig.truthy_value) { + // convertir la valeur, si elle est truthy, la transformer en ce que donne la propriété truthy_value + // exemple: le jeu de données dit que la colonne cable_t2_attache vaut "True", mais on veut le convertir en "1". + // on met donc truthy_value: '1' + if (this.truthyValues.indexOf(valueConvertedFromMapping) !== -1) { + convertedValue = conditionnalConfig.truthy_value + } + } + if (conditionnalConfig.falsy_value) { + if (this.falsyValues.indexOf(valueConvertedFromMapping) !== -1) { + convertedValue = conditionnalConfig.falsy_value + } + } + if (conditionnalConfig.transform_function) { + // une transformation de la valeur + // apply transformation to value + convertedValue = conditionnalConfig.transform_function(valueConvertedFromMapping) + } + // use the value converted + else if (conditionnalConfig.value_converted) { + convertedValue = conditionnalConfig.value_converted + } + } + } + + if (newKey && !configObject.ignore_this_data) { + newProperties[newKey] = convertedValue + } } } } diff --git a/mapping_geojson_to_osm_tags/mappings/mapping-config.type.ts b/mapping_geojson_to_osm_tags/mappings/mapping-config.type.ts index 1ed68100..558642f9 100644 --- a/mapping_geojson_to_osm_tags/mappings/mapping-config.type.ts +++ b/mapping_geojson_to_osm_tags/mappings/mapping-config.type.ts @@ -1,4 +1,5 @@ export interface FeaturePropertyMappingConfigType{ + [key:string]: any, key_converted?:string, truthy_value?:any, } @@ -12,5 +13,5 @@ export default interface MappingConfigType{ config_name: string, config_author: string, default_properties_of_point: object, - tags: object + tags: FeaturePropertyMappingConfigType } \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/mappings/utils.ts b/mapping_geojson_to_osm_tags/mappings/utils.ts index e8fca3fa..384c2f1a 100644 --- a/mapping_geojson_to_osm_tags/mappings/utils.ts +++ b/mapping_geojson_to_osm_tags/mappings/utils.ts @@ -1,13 +1,14 @@ -import fs from 'node-fs' +import fs from 'node:fs' let show_debug = 0 show_debug = 1 +let output_folder = 'output'; /** - * faire un log - * @param message + * wrapper de log qui se montre uniquemnt si show_debug a été activé + * @param args */ -function debugLog(...args : any) { +function debugLog(...args: any[]) { if (!show_debug) { return } @@ -15,16 +16,16 @@ function debugLog(...args : any) { } -let listOfBooleanKeys = Object.keys({ - prise_type_ef: 'socket:typee', - prise_type_2: 'socket:type2', - prise_type_combo_ccs: 'socket:type2_combo', - prise_type_chademo: 'socket:chademo', - gratuit: 'fee', - paiement_acte: 'authentication:none', - paiement_cb: 'payment:credit_cards', - cable_t2_attache: 'socket:type2_cable', -}) +let listOfBooleanKeys = [ + "prise_type_ef", + "prise_type_2", + "prise_type_combo_ccs", + "prise_type_chademo", + "gratuit", + "paiement_acte", + "paiement_cb", + "cable_t2_attache" +] /** @@ -32,16 +33,22 @@ let listOfBooleanKeys = Object.keys({ * @param pointKeyName * @returns {boolean} */ -function isBooleanKey(pointKeyName) { +function isBooleanKey(pointKeyName: string): boolean { return listOfBooleanKeys.indexOf(pointKeyName) !== -1 } -function writeFile(fileName, fileContent) { +/** + * crée un fichier dans le dossier par défaut, output + * @param fileName + * @param fileContent + */ +function writeFile(fileName: string, fileContent: any) { debugLog('write file ', fileName) + return fs.writeFile( - `./output/${fileName}`, + `./${output_folder}/${fileName}`, fileContent, 'utf8', (err) => { diff --git a/mapping_geojson_to_osm_tags/osm_output/borne-présentes-dans-osm_france_entière.osm b/mapping_geojson_to_osm_tags/osm_output/borne-présentes-dans-osm_france_entière.osm new file mode 100644 index 00000000..e6565b0e --- /dev/null +++ b/mapping_geojson_to_osm_tags/osm_output/borne-présentes-dans-osm_france_entière.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes_irve_existantes_présentes_dans_osm_2023-03-08.json b/mapping_geojson_to_osm_tags/osm_output/bornes_irve_existantes_présentes_dans_osm_2023-03-08.json new file mode 100644 index 00000000..99ba2db0 --- /dev/null +++ b/mapping_geojson_to_osm_tags/osm_output/bornes_irve_existantes_présentes_dans_osm_2023-03-08.json @@ -0,0 +1,204851 @@ +{ + "version": 0.6, + "generator": "Overpass API 0.7.61.4 df4c946a", + "osm3s": { + "timestamp_osm_base": "2023-08-03T20:32:34Z", + "timestamp_areas_base": "2023-08-03T16:33:01Z", + "copyright": "The data included in this document is from www.openstreetmap.org. The data is made available under ODbL." + }, + "elements": [ + { + "type": "node", + "id": 479413256, + "lat": 48.8395317, + "lon": 2.3295765, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Paris/Edgar Quinet/2", + "operator": "Belib'", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 798978670, + "lat": 43.729909, + "lon": 0.8795623, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "VKTE", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 894108495, + "lat": 47.3873969, + "lon": 0.7722806, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2698;FR*S37*E2699", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 980652234, + "lat": 50.6027013, + "lon": 3.0694796, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Proxyserve", + "socket:type3c": "1" + } + }, + { + "type": "node", + "id": 1012187018, + "lat": 43.3526289, + "lon": 1.8019591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fuel:electricity": "yes", + "ref": "3" + } + }, + { + "type": "node", + "id": 1012187050, + "lat": 43.3525684, + "lon": 1.8018148, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fuel:electricity": "yes", + "ref": "4" + } + }, + { + "type": "node", + "id": 1012187055, + "lat": 43.3527488, + "lon": 1.8022269, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fuel:electricity": "yes", + "ref": "2" + } + }, + { + "type": "node", + "id": 1055384766, + "lat": 46.1278337, + "lon": 3.4312902, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "source": "CRAIG - IGN - TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016" + } + }, + { + "type": "node", + "id": 1248246931, + "lat": 46.5135296, + "lon": -1.7776906, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "E. Leclerc Olonne-sur-Mer", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref": "85340003", + "ref:EU:EVSE": "FR*S85*P85166*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:type3c": "4" + } + }, + { + "type": "node", + "id": 1377735389, + "lat": 43.7166718, + "lon": 7.2567301, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "prise de Nice" + } + }, + { + "type": "node", + "id": 1414762008, + "lat": 43.5706116, + "lon": 1.3105928, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "McDonald's", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 1439688413, + "lat": 46.521621, + "lon": 3.6877748, + "tags": { + "amenity": "charging_station", + "power_supply": "yes", + "voltage": "220" + } + }, + { + "type": "node", + "id": 1440369547, + "lat": 46.483004, + "lon": 3.9877106, + "tags": { + "amenity": "charging_station", + "amperage": "10", + "capacity": "8" + } + }, + { + "type": "node", + "id": 1440391544, + "lat": 46.2528517, + "lon": 4.0106152, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 1463699016, + "lat": 47.684749, + "lon": 6.51993, + "tags": { + "amenity": "charging_station", + "source": "BDOrtho IGN" + } + }, + { + "type": "node", + "id": 1530997538, + "lat": 48.882268, + "lon": 2.370723, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 1542715837, + "lat": 48.8650537, + "lon": 2.3443316, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "name": "Paris/Étienne Marcel/36", + "network": "Autolib'", + "operator": "Autolib'", + "ref:FR:Paris:DSP": "75102-10", + "source": "Mairie de Paris - 05/2013", + "source:coordinates": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 1583806472, + "lat": 46.5867784, + "lon": 0.3475035, + "tags": { + "amenity": "charging_station", + "source": "Observations locales et GPS" + } + }, + { + "type": "node", + "id": 1601711126, + "lat": 48.9157408, + "lon": 2.2909357, + "tags": { + "amenity": "charging_station", + "level": "0", + "operator": "Autolib'" + } + }, + { + "type": "node", + "id": 1601711127, + "lat": 48.9157762, + "lon": 2.2909034, + "tags": { + "amenity": "charging_station", + "level": "0", + "operator": "Autolib'" + } + }, + { + "type": "node", + "id": 1601711128, + "lat": 48.9158113, + "lon": 2.2908713, + "tags": { + "amenity": "charging_station", + "level": "0", + "operator": "Autolib'" + } + }, + { + "type": "node", + "id": 1601711129, + "lat": 48.9158491, + "lon": 2.2908367, + "tags": { + "amenity": "charging_station", + "level": "0", + "operator": "Autolib'" + } + }, + { + "type": "node", + "id": 1601711130, + "lat": 48.9158862, + "lon": 2.2908028, + "tags": { + "amenity": "charging_station", + "level": "0", + "operator": "Autolib'" + } + }, + { + "type": "node", + "id": 1601711132, + "lat": 48.9159218, + "lon": 2.2907703, + "tags": { + "amenity": "charging_station", + "level": "0", + "operator": "Autolib'" + } + }, + { + "type": "node", + "id": 1685216879, + "lat": 48.7942262, + "lon": 2.3344777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "0 805 021 480", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94016*002", + "socket:type2": "2", + "socket:type2:output": "7.4 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 1712841218, + "lat": 48.8807145, + "lon": 2.4219708, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "network": "La borne bleue", + "owner": "La borne bleue" + } + }, + { + "type": "node", + "id": 1714033524, + "lat": 48.7928962, + "lon": 2.3216763, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33 805 021 480", + "fee": "yes", + "fixme": "Vérifier le nombre de bornes (2 ou 6 ?)", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94016*002", + "socket:type2": "2", + "socket:type2:output": "7.4 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 1756259321, + "lat": 48.833799, + "lon": 2.3085854, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Vouillé/47", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0139", + "socket:type3c": "4", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 1771479315, + "lat": 44.0437754, + "lon": 4.4409084, + "tags": { + "addr:city": "Saint-Quentin-la-Poterie", + "addr:postcode": "30700", + "addr:street": "Avenue du Marché", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30295*001", + "ref:EU:EVSE": "FR*S30*P30295*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 1780664600, + "lat": 43.7050349, + "lon": 7.2905852, + "tags": { + "amenity": "charging_station", + "operator": "autobleu", + "voltage": "220", + "website": "autobleu.org" + } + }, + { + "type": "node", + "id": 1780664603, + "lat": 43.7090184, + "lon": 7.2929297, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "4", + "name": "ChargePoint", + "opening_hours": "24/7", + "operator": "Ville de Nice", + "voltage": "220" + } + }, + { + "type": "node", + "id": 1782857136, + "lat": 43.7043682, + "lon": 7.2689586, + "tags": { + "amenity": "charging_station", + "operator": "autobleu", + "voltage": "220", + "website": "autobleu.org" + } + }, + { + "type": "node", + "id": 1785723285, + "lat": 43.503626, + "lon": 5.387833, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 1797562757, + "lat": 44.8384273, + "lon": -0.5671193, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 1862638581, + "lat": 42.4596158, + "lon": 2.0396376, + "tags": { + "amenity": "charging_station", + "name": "Flot bleu", + "note": "electricite camping car 220 volt + eau", + "voltage": "220" + } + }, + { + "type": "node", + "id": 1938327083, + "lat": 46.8806296, + "lon": 4.9518134, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 1938349201, + "lat": 46.6752568, + "lon": 4.3624499, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 1938349212, + "lat": 46.6755234, + "lon": 4.3626869, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 1974242706, + "lat": 47.669672, + "lon": 2.8097376, + "tags": { + "amenity": "charging_station", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012" + } + }, + { + "type": "node", + "id": 1974242720, + "lat": 47.6699054, + "lon": 2.8101449, + "tags": { + "amenity": "charging_station", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2012" + } + }, + { + "type": "node", + "id": 2001070838, + "lat": 49.777747, + "lon": 4.7442564, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Montcy Notre Dame", + "operator": "Clem", + "ref": "AM 052" + } + }, + { + "type": "node", + "id": 2003145869, + "lat": 48.8597459, + "lon": 2.354298, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "operator:wikipedia": "en:ChargePoint", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0017", + "ref:FR:Paris:DSP": "75104-04", + "socket:type3c": "4", + "source": "Mairie de Paris - 05/2013" + } + }, + { + "type": "node", + "id": 2011342238, + "lat": 49.3530201, + "lon": 6.1666386, + "tags": { + "amenity": "charging_station", + "charging_station:capacity": "3", + "voltage": "230" + } + }, + { + "type": "node", + "id": 2011342267, + "lat": 49.3566599, + "lon": 6.1639237, + "tags": { + "amenity": "charging_station", + "charging_station:capacity": "3", + "layer": "-1", + "voltage": "230" + } + }, + { + "type": "node", + "id": 2144376575, + "lat": 48.0449426, + "lon": -1.602638, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD3510811;FR*S35*PSD3510812", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2157490265, + "lat": 48.803772, + "lon": 2.1883711, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "operator": "Izivia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 2189923970, + "lat": 44.6512234, + "lon": 3.9554751, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07232*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 2206863793, + "lat": 48.8755656, + "lon": 2.3996641, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "email": "assistance.technique@tevgo.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "phone": "+33 1 85 16 94 02", + "ref:EU:EVSE": "FR*V75*PPX20*02", + "socket:type2": "7", + "socket:typee": "7", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2285746565, + "lat": 48.5291788, + "lon": 7.7082745, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:car": "2", + "name": "Borne de charge, Allée francois Mitterrand, Illkirch-Graffenstaden", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400" + } + }, + { + "type": "node", + "id": 2285746566, + "lat": 48.5515755, + "lon": 7.6921084, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746567, + "lat": 48.5685407, + "lon": 7.7518515, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746568, + "lat": 48.5803159, + "lon": 7.7131259, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746569, + "lat": 48.5808407, + "lon": 7.7614036, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746570, + "lat": 48.5922759, + "lon": 7.7698874, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746571, + "lat": 48.5944528, + "lon": 7.7592089, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746572, + "lat": 48.6086131, + "lon": 7.7504327, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:car": "2", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 2285746573, + "lat": 49.0436177, + "lon": 7.0448937, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "3", + "capacity:car": "2", + "motorcar": "yes", + "note": "2018-04-10: en panne. Nicht angeschlossen.", + "operator": "? (CROME n'existe plus)", + "socket:schuko": "2", + "socket:schuko:current": "16", + "socket:schuko:voltage": "230", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:voltage": "400", + "socket:type3": "1", + "socket:type3:current": "32", + "socket:type3:voltage": "400" + } + }, + { + "type": "node", + "id": 2290424276, + "lat": 48.8429039, + "lon": 2.5823637, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Clem' Autopartage;Clem'", + "network": "Clem'", + "operator": "monautopartage", + "website": "monautopartage.fr" + } + }, + { + "type": "node", + "id": 2300035742, + "lat": 48.0637173, + "lon": -1.6236393, + "tags": { + "amenity": "charging_station", + "capacity:car": "4", + "opening_hours": "Mo-Sa 08:45-20:30", + "socket:schuko": "4" + } + }, + { + "type": "node", + "id": 2336955101, + "lat": 46.0681411, + "lon": 3.6634625, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "opening_hours": "Tu-Fr 08:45-12:15,14:45-19:00; Mo 08:45-12:30,14:45-19:00; Sa 08:45-12:15,14:30-19:00; Jul-Aug: Su 09:00-12:00", + "operator": "Intermarché", + "socket:type2_combo": "1", + "source": "survey", + "survey:date": "2021-07-25" + } + }, + { + "type": "node", + "id": 2357281778, + "lat": 43.6017951, + "lon": 1.4516733, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*005", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 2360710586, + "lat": 43.6579457, + "lon": 7.1666627, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 2370713344, + "lat": 46.1479034, + "lon": -1.1545777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "capacity:disabled": "1", + "description": "Bornes voiture électrique ", + "larochelle_id": "351", + "source": "opendata.larochelle.fr 2013-07", + "wheelchair": "designated" + } + }, + { + "type": "node", + "id": 2378416360, + "lat": 48.829272, + "lon": 2.3744791, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "disused:amenity": "car_sharing", + "level": "0", + "name": "Paris/Tolbiac/15", + "network": "Autolib'", + "operator": "Clem", + "ref:FR:Paris:DSP": "75113-33", + "source": "Mairie de Paris - 03/2016", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2382750564, + "lat": 48.9726902, + "lon": 2.3066385, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "owner": "SIGEIF", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2393685524, + "lat": 43.6036832, + "lon": 3.9245169, + "tags": { + "amenity": "charging_station", + "fuel:1_25": "no", + "fuel:1_50": "no", + "fuel:GTL_diesel": "no", + "fuel:HGV_diesel": "no", + "fuel:biodiesel": "no", + "fuel:biogas": "no", + "fuel:cng": "no", + "fuel:diesel": "no", + "fuel:e10": "no", + "fuel:e85": "no", + "fuel:electricity": "yes", + "fuel:lpg": "no", + "fuel:octane_100": "no", + "fuel:octane_91": "no", + "fuel:octane_95": "no", + "fuel:octane_98": "no" + } + }, + { + "type": "node", + "id": 2451942381, + "lat": 48.2921649, + "lon": 4.1304605, + "tags": { + "amenity": "charging_station", + "source": "pifométrique" + } + }, + { + "type": "node", + "id": 2495770084, + "lat": 44.1110172, + "lon": 4.8520205, + "tags": { + "amenity": "charging_station", + "source": "survey 2013" + } + }, + { + "type": "node", + "id": 2500391262, + "lat": 48.831963, + "lon": 2.3045735, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Morillons/95", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*14", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2509595777, + "lat": 48.919853, + "lon": 2.3140787, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2519096437, + "lat": 44.8415003, + "lon": -0.5608768, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 2520953313, + "lat": 45.6360734, + "lon": 4.1974484, + "tags": { + "amenity": "charging_station", + "capacity:car": "2", + "motorcar": "yes", + "network": "e-Totem", + "operator": "Loire-Forez", + "website": "http://www.e-totem.fr" + } + }, + { + "type": "node", + "id": 2582327324, + "lat": 44.3695898, + "lon": 2.5895389, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "network": "izivia", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:izivia": "yes", + "ref": "MAT-017843", + "socket:type2": "1", + "socket:type2:output": "7kW", + "socket:typee": "1", + "socket:typee:output": "2.3kW" + } + }, + { + "type": "node", + "id": 2582332590, + "lat": 44.3523947, + "lon": 2.5666953, + "tags": { + "amenity": "charging_station", + "description": "inside the parking on the right", + "inside": "yes", + "layer": "-1", + "source": "survey" + } + }, + { + "type": "node", + "id": 2589076564, + "lat": 45.726861, + "lon": 4.8305992, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "operator": "Izivia", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 2589076693, + "lat": 45.7525086, + "lon": 4.8681328, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "5", + "fee": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 2589076694, + "lat": 45.7533684, + "lon": 4.8496849, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Aristide Briand", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY310B;MAT-009148", + "ref:EU:EVSE": "FR*GLY*PLYON13222", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2589076709, + "lat": 45.7570165, + "lon": 4.8516075, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Paul Bert - Garibaldi", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY314A;MAT-008976", + "ref:EU:EVSE": "FR*GLY*PLYON8411", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2589076716, + "lat": 45.7587338, + "lon": 4.8616325, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Villette - Pompidou", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY316D", + "ref:EU:EVSE": "FR*GLY*PLYON10841", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2589076727, + "lat": 45.7630107, + "lon": 4.8541126, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Part-Dieu - Deruelle", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY301A", + "ref:EU:EVSE": "FR*GLY*PLYON16211", + "socket:type2": "1", + "socket:type2:power": "7 kW", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2589076730, + "lat": 45.7677749, + "lon": 4.8583987, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Brotteaux", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY603A;MAT-008968", + "ref:EU:EVSE": "FR*GLY*PLYON8211", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2589076741, + "lat": 45.7721983, + "lon": 4.853071, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Montgolfier", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY607A;MAT-009037", + "ref:EU:EVSE": "FR*GLY*PLYON10311", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 2604801468, + "lat": 48.8172852, + "lon": 2.3277298, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Metropolis", + "opening_hours": "24/7", + "operator": "Métropole du Grand Paris", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref": "4", + "socket:type2_combo": "1", + "socket:type2_combo:output": "100 kW", + "website": "https://www.metropolis-recharge.fr/" + } + }, + { + "type": "node", + "id": 2665071445, + "lat": 47.1839371, + "lon": 0.964357, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1216;FR*S37*E1217", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 2683110847, + "lat": 47.2095543, + "lon": 0.946295, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge", + "socket:type2": "yes", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 2683115001, + "lat": 47.390668, + "lon": 0.6666041, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "mapillary": "2xcxJ42RlL4StbyBqlW1rg", + "operator": "Modulo Énergies", + "survey:date": "2020-02-17" + } + }, + { + "type": "node", + "id": 2696091833, + "lat": 47.2496242, + "lon": 0.876739, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1234;FR*S37*E1235", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 2696186175, + "lat": 48.8386806, + "lon": 2.1871213, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Garches", + "ref:EU:EVSE": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 2706067047, + "lat": 48.783483, + "lon": 2.2237046, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Borne de recharge IKEA", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 2707506021, + "lat": 50.6655423, + "lon": 3.0767153, + "tags": { + "amenity": "charging_station", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2014" + } + }, + { + "type": "node", + "id": 2715615028, + "lat": 45.4533062, + "lon": 4.3877803, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "capacity:car": "3", + "motorcar": "yes", + "network": "e-Totem", + "operator": "Saint-Étienne Métropole", + "website": "http://www.e-totem.fr" + } + }, + { + "type": "node", + "id": 2717199987, + "lat": 44.8402226, + "lon": -0.5560688, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "FreshMile" + } + }, + { + "type": "node", + "id": 2722937396, + "lat": 48.8861303, + "lon": 2.3151877, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0166", + "socket:type3c": "5", + "source": "data.gouv.fr:Etalab - 01/2020", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2772269410, + "lat": 48.6931903, + "lon": 6.1780768, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "Park&Charge", + "authentication:rfid": "yes", + "capacity": "4", + "fee": "yes", + "location": "underground", + "operator": "Indigo", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 2794436467, + "lat": 47.3683939, + "lon": 0.7786077, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1264;FR*S37*E1265", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 2801327103, + "lat": 43.1760445, + "lon": 0.9702774, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 2833198824, + "lat": 48.8285077, + "lon": 2.3612348, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "disused:amenity": "car_sharing", + "name": "Paris/Charles Moureu/42", + "network": "Autolib'", + "operator": "Ubeeqo", + "ref:FR:Paris:DSP": "75113-09", + "source": "Mairie de Paris - 05/2013", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 2863159923, + "lat": 48.8346873, + "lon": 2.3296381, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Belib" + } + }, + { + "type": "node", + "id": 2889918099, + "lat": 48.8327387, + "lon": 2.3261261, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "network": "Belib'", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 3004325994, + "lat": 43.4589371, + "lon": 6.7464205, + "tags": { + "access": "customers", + "addr:city": "Fréjus", + "addr:postcode": "83600", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "name": "Fréjus Supercharger", + "opening_hours": "24/7", + "operator": "Tesla Motors Inc.", + "website": "https://www.teslamotors.com/frejussupercharger" + } + }, + { + "type": "node", + "id": 3016101799, + "lat": 47.8518013, + "lon": 3.5428675, + "tags": { + "access": "customers", + "addr:city": "Appoigny", + "addr:postcode": "89380", + "addr:street": "Rue du Fossé du Bois", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Auxerre Supercharger", + "note": "Mercure Auxerre Nord - Route nationale 6 - Lieu dit Le Chaumois -89380 Appoigny", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "source": "Open Data Gouv 2018 - Tesla", + "website": "https://www.tesla.com/findus/location/supercharger/auxerresupercharger" + } + }, + { + "type": "node", + "id": 3024616745, + "lat": 45.8532271, + "lon": 5.4070545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "capacity:car": "3", + "construction": "yes", + "fee": "yes", + "motorcar": "yes", + "name": "Porcieu-Amblagnieu", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "BYXA, AEVM", + "ref:EU:EVSE": "FR*CN1*PXESNPX", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3038814198, + "lat": 48.8425884, + "lon": 2.3361604, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "description": "prise T3 de 3,7 kWh AC mono", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Michelet", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "Point de charge=FR*W75*EVP*0034*0006;ID Station=FR*W75*PVP*0034;ID Autolib=75106-11", + "ref:EU:EVSE": "FR*W75*PVP*0034", + "socket:type3c": "6", + "socket:typee": "1", + "source": "survey;https://parisdata.opendatasoft.com/explore/dataset/bornes-de-recharge-pour-vehicules-electriques/" + } + }, + { + "type": "node", + "id": 3039024987, + "lat": 48.8319005, + "lon": 2.3202878, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "belib" + } + }, + { + "type": "node", + "id": 3044332468, + "lat": 48.7316053, + "lon": -3.4536195, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 3045177894, + "lat": 45.5869248, + "lon": 4.787804, + "tags": { + "access": "customers", + "addr:city": "Chasse-sur-Rhône", + "addr:country": "FR", + "addr:housenumber": "145", + "addr:postcode": "38670", + "addr:street": "Rue Pasteur", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Vienne Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chassesurrhonesupercharger" + } + }, + { + "type": "node", + "id": 3045215118, + "lat": 43.1676432, + "lon": 2.9859067, + "tags": { + "access": "customers", + "addr:city": "Narbonne", + "addr:country": "FR", + "addr:housenumber": "130", + "addr:postcode": "11100", + "addr:street": "Rue de l'Hôtellerie", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Narbonne Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/narbonnesupercharger" + } + }, + { + "type": "node", + "id": 3060592805, + "lat": 44.3635285, + "lon": 2.5885373, + "tags": { + "amenity": "charging_station", + "source": "survey2014" + } + }, + { + "type": "node", + "id": 3064630121, + "lat": 49.5210725, + "lon": 0.1115751, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3074118447, + "lat": 43.0984859, + "lon": 5.8261619, + "tags": { + "amenity": "charging_station", + "operator": "Intermarché" + } + }, + { + "type": "node", + "id": 3084348903, + "lat": 48.6860635, + "lon": 6.1745089, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "1€/1H", + "covered": "yes", + "description:payment": "Carte pré-payée Grand Nancy", + "fee": "yes", + "level": "-1", + "location": "underground", + "official_name": "MGN_Parking Kennedy", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 3087313748, + "lat": 49.1606215, + "lon": -0.3019158, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVLink Parking", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "Mo-Th 09:30-19:00; Fr,Sa 09:30-20:00", + "operator": "Centre Commercial Mondevillage", + "owner": "Centre Commercial Mondevillage", + "scooter": "yes", + "socket:type3c": "4", + "socket:type3c:output": "3 kW, 22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 3090603744, + "lat": 48.6876809, + "lon": 6.1774824, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "5", + "charge": "1€/1H", + "fee": "yes", + "level": "0", + "location": "underground", + "official_name": "MGN_Parking République", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "5", + "socket:type3": "5" + } + }, + { + "type": "node", + "id": 3090616277, + "lat": 48.6891876, + "lon": 6.1821201, + "tags": { + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "Park&Charge", + "capacity": "3", + "fee": "yes", + "level": "-1", + "location": "underground", + "operator": "Indigo", + "payment:credit_cards": "yes", + "socket:schuko": "3", + "socket:type3": "3", + "website": "http://parkindigo.fr/" + } + }, + { + "type": "node", + "id": 3090617758, + "lat": 48.6846904, + "lon": 6.1882376, + "tags": { + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "location": "underground", + "operator": "Ville de Nancy", + "payment:credit_cards": "yes", + "socket:schuko": "2" + } + }, + { + "type": "node", + "id": 3090622401, + "lat": 48.6948533, + "lon": 6.1365226, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "covered": "booth", + "fee": "no", + "operator": "Renault Retail Group Nancy", + "socket:schuko": "1", + "socket:type2": "3" + } + }, + { + "type": "node", + "id": 3090627722, + "lat": 48.6927001, + "lon": 6.1287596, + "tags": { + "amenity": "charging_station", + "amperage": "43", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "no", + "opening_hours": "24/7", + "operator": "Nissan automobiles", + "socket:chademo": "1" + } + }, + { + "type": "node", + "id": 3090629624, + "lat": 48.6901672, + "lon": 6.2155033, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "operator": "Volkswagen", + "source": "survey" + } + }, + { + "type": "node", + "id": 3090630911, + "lat": 48.6173077, + "lon": 6.1781081, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "operator": "Thomé" + } + }, + { + "type": "node", + "id": 3090775899, + "lat": 50.4368765, + "lon": 2.5827518, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "operator": "DBT" + } + }, + { + "type": "node", + "id": 3105128492, + "lat": 49.2085506, + "lon": 2.6059763, + "tags": { + "access": "customers", + "addr:city": "Senlis", + "addr:country": "FR", + "addr:housenumber": "72", + "addr:postcode": "60300", + "addr:street": "Avenue du Général-de-Gaulle", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Senlis Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "16", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/senlissupercharger" + } + }, + { + "type": "node", + "id": 3105143180, + "lat": 46.1372009, + "lon": 6.1244553, + "tags": { + "access": "customers", + "addr:city": "Archamps", + "addr:postcode": "74160", + "addr:street": "Route de Chosal - Archamps Technopole", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "18", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Archamps Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "18", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "18", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/archampssupercharger" + } + }, + { + "type": "node", + "id": 3111187129, + "lat": 48.8699036, + "lon": 1.076475, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3113359734, + "lat": 44.8368034, + "lon": -0.5813856, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "Freshmile", + "capacity": "2", + "manufacturer": "EVTronic", + "model": "Oazis", + "ref": "JXAQ1;JXAQ2", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 3122433390, + "lat": 48.9049197, + "lon": 2.2557137, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "La Borne Bleue", + "operator": "La Borne Bleue" + } + }, + { + "type": "node", + "id": 3133005852, + "lat": 48.5964012, + "lon": 2.3683352, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Sičge Intermarché", + "ref:EU:EVSE": "FR*G29*P91086*001", + "socket:type2": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3136635669, + "lat": 43.231562, + "lon": 0.084082, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "name": "marcadieu", + "network": "Watt else?", + "opening_hours": "24/7", + "operator": "SDE65", + "owner": "SDE65", + "ref:EU:EVSE": "FR*S65*P65000*MARCAD", + "socket:type2": "3", + "socket:type3": "1", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 3174794786, + "lat": 45.7499508, + "lon": -0.6616872, + "tags": { + "access": "customers", + "addr:city": "Saintes", + "addr:country": "FR", + "addr:housenumber": "132", + "addr:postcode": "17100", + "addr:street": "Cours Genet", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Saintes Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/saintessupercharger" + } + }, + { + "type": "node", + "id": 3174982036, + "lat": 49.1748582, + "lon": 1.351922, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900082", + "ref:EU:EVSE": "FR*S27*PAUBEVOYE*GARE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3212477252, + "lat": 49.4928029, + "lon": 0.0960488, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 3230182265, + "lat": 48.856641, + "lon": 2.3268017, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Paris/Bac/42", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 3250911124, + "lat": 46.3476446, + "lon": -1.4300791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Tranche-sur-Mer - Rue du Perthuis Breton", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85294*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911125, + "lat": 46.36944, + "lon": -0.59512, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85020*001", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911126, + "lat": 46.39301, + "lon": -1.02199, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Normale et accélérée", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref": "042VE001", + "ref:EU:EVSE": "FR*S85*P85042*001", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911127, + "lat": 46.41642, + "lon": -1.57682, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85114*001", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911128, + "lat": 46.45333, + "lon": -1.15782, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Normale et accélérée", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "note": "Place des anciens abattoirs - Rue du Moulin Rouget", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref": "128VE002", + "ref:EU:EVSE": "FR*S85*P85128*002", + "socket:type3": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/stations-de-recharge-pour-vehicules-electriques-sur-le-territoire-vendeen/" + } + }, + { + "type": "node", + "id": 3250911129, + "lat": 46.4544932, + "lon": -1.1683156, + "tags": { + "addr:city": "Luçon", + "addr:postcode": "85400", + "addr:street": "Place du Général Leclerc", + "amenity": "charging_station", + "capacity": "2", + "description": "Normale et accélérée", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref": "128VE001", + "ref:EU:EVSE": "FR*S85*P85128*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/stations-de-recharge-pour-vehicules-electriques-sur-le-territoire-vendeen/" + } + }, + { + "type": "node", + "id": 3250911132, + "lat": 46.46695, + "lon": -1.10895, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "Rapide", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85216*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 3250911133, + "lat": 46.48124, + "lon": -1.7590607, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85060*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911134, + "lat": 46.5019575, + "lon": -1.7961932, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "956468801799651", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85194*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911135, + "lat": 46.5050642, + "lon": -1.7369665, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85060*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911136, + "lat": 46.50641, + "lon": -1.77019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85166*003", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911137, + "lat": 46.53415, + "lon": -1.77327, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85166*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911138, + "lat": 46.53632, + "lon": -1.22376, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85135*001", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911139, + "lat": 46.54185, + "lon": -1.7726, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85166*002", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911140, + "lat": 46.66009, + "lon": -1.40277, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*010", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911141, + "lat": 46.6642, + "lon": -1.42502, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*012", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911142, + "lat": 46.66589, + "lon": -1.45374, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911143, + "lat": 46.66913, + "lon": -1.44083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*009", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911144, + "lat": 46.6690463, + "lon": -1.4317585, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*011", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911145, + "lat": 46.67044, + "lon": -1.40609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*008", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911146, + "lat": 46.67102, + "lon": -1.4282, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911147, + "lat": 46.6720846, + "lon": -1.2927123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85046*001", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911148, + "lat": 46.67246, + "lon": -1.43743, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*007", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911149, + "lat": 46.6829, + "lon": -1.43236, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911150, + "lat": 46.6910859, + "lon": -1.428603, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*004", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 3250911151, + "lat": 46.714, + "lon": -1.31272, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85089*001", + "socket:type3": "2", + "socket:typee": "2", + "survey:date": "2017-06-29" + } + }, + { + "type": "node", + "id": 3250911152, + "lat": 46.7208469, + "lon": -1.4603676, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85155*001", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911153, + "lat": 46.7400796, + "lon": -1.6078713, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85003*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911154, + "lat": 46.7435056, + "lon": -1.6138731, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85003*002", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911155, + "lat": 46.7661163, + "lon": -1.5054899, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85178*002", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911156, + "lat": 46.7679256, + "lon": -1.5077302, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85178*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250911157, + "lat": 46.77294, + "lon": -1.22665, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85084*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3250911158, + "lat": 46.7741151, + "lon": -1.2300945, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85084*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3250911159, + "lat": 46.81173, + "lon": -1.13728, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85212*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 3250911160, + "lat": 46.844828, + "lon": -1.88041, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "SYDEV", + "operator": "SyDEV", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85047B", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 3250913761, + "lat": 46.84565, + "lon": -1.88028, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85047*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250913762, + "lat": 46.851305, + "lon": -1.1702882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85215*002", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3250913763, + "lat": 46.86117, + "lon": -1.86452, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85047*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 3250913764, + "lat": 46.8614456, + "lon": -1.0172257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85109*003", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250913765, + "lat": 46.8714, + "lon": -1.00948, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85109*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250913766, + "lat": 46.87317, + "lon": -1.01449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SyDEV" + } + }, + { + "type": "node", + "id": 3250913767, + "lat": 46.9472391, + "lon": -1.2969949, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85217*001", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3250913768, + "lat": 46.95767, + "lon": -1.35084, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Boufféré", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85027*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 3250913769, + "lat": 46.9740739, + "lon": -1.3121878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85146*001", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3256803061, + "lat": 45.9930837, + "lon": 3.9838791, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3261704339, + "lat": 44.7562625, + "lon": 4.7501875, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "note": "CNR0725000001", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*PMCUAXH", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3261704341, + "lat": 44.9606796, + "lon": 4.8774073, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "place", + "motorcar": "yes", + "network": "move in pure", + "note": "CNR2650000001", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "DDVX, CUGX", + "ref:EU:EVSE": "FR*CN1*PNVGNXQ", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3262270696, + "lat": 45.191766, + "lon": 5.7128917, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fixme": "Vérifier le nombre de bornes et leur réseau (Alizé et/ou Citiz). La station open data Alizé FR*M38*P38185*008 devrait se trouver ici.", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 3280798952, + "lat": 48.8673378, + "lon": 2.3966373, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Paris 53 Gambetta Pyrénées", + "network": "Clem'", + "operator": "Clem'", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3280798954, + "lat": 48.873903, + "lon": 2.3865832, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "email": "assistance.technique@tevgo.fr", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "phone": "+33 1 85 16 94 02", + "ref:EU:EVSE": "FR*V75*PPX20*15", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3282983307, + "lat": 48.890647, + "lon": 2.2414797, + "tags": { + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "motorcar": "yes", + "name": "VinciPark- Centre", + "note": "Arche Nord", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282983308, + "lat": 48.8974904, + "lon": 2.0944783, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "VinciPark- Château", + "note": "Place Charles de Gaulle", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282983309, + "lat": 48.8952176, + "lon": 2.3850474, + "tags": { + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "VinciPark- Cité des sciences", + "note": "211 Avenue Jean Jaurès", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282983310, + "lat": 48.9696155, + "lon": 2.3076775, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "VinciPark- Hôtel de Ville", + "note": "18 rue de Malleville", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282983311, + "lat": 48.856353, + "lon": 2.3535669, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Lobau Rivoli", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9004*01", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "Open Data", + "website": "https://fr.parkindigo.com/parking/lobau-rivoli-75040600" + } + }, + { + "type": "node", + "id": 3282989198, + "lat": 48.5874282, + "lon": 7.7369486, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "VinciPark - Wodli", + "note": "3 boulevard du président Wilson", + "operator": "Sodetrel", + "source": "Open Data" + } + }, + { + "type": "node", + "id": 3282989199, + "lat": 49.0373015, + "lon": 2.0768923, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "VinciPark- Galeries", + "note": "Avenue des 3 Fontaines", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282989200, + "lat": 49.0364574, + "lon": 2.0774811, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "VinciPark- Les Arts", + "note": "Rue de la préfecture", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282993766, + "lat": 43.8338927, + "lon": 4.3618367, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "name": "VinciPark- Arènes", + "note": "5 Boulevard de Bruxelles", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282993767, + "lat": 43.604087, + "lon": 1.4436981, + "tags": { + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "layer": "-1", + "name": "VinciPark- Capitole", + "note": "Place du Capitole", + "operator": "Sodetrel", + "source": "Open Data", + "website": "http://www.parkindigo.fr/fr/parkings/capitole-31000100" + } + }, + { + "type": "node", + "id": 3282993768, + "lat": 48.5834231, + "lon": 7.7453157, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "VinciPark- Kleber", + "note": "6 Place de l'Homme de fer", + "operator": "Sodetrel", + "source": "Open Data" + } + }, + { + "type": "node", + "id": 3282993769, + "lat": 43.8391609, + "lon": 4.3549956, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "VinciPark- Maison Carrée", + "network": "Révéo", + "note": "1 Quai de la Fontaine", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30189*012", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282993770, + "lat": 43.1235818, + "lon": 5.935491, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "VinciPark- Peiresc", + "note": "Rue de Lorgues", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3282993771, + "lat": 49.0483802, + "lon": 2.0108465, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "VinciPark- Trois Gares", + "note": "3 Rue de l'embarquement", + "operator": "Sodetrel", + "source": "Open Data", + "website": "www.vincipark.sodetrel.fr" + } + }, + { + "type": "node", + "id": 3283709126, + "lat": 46.4619305, + "lon": -0.8085948, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Normale et accélérée", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "note": "Pôle d'échange Multi Usages - Rue Gérard Guérin", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref": "092VE001", + "ref:EU:EVSE": "FR*S85*P85092*003", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/stations-de-recharge-de-vehicules-electriques-sur-le-territoire-vendeen/" + } + }, + { + "type": "node", + "id": 3283709127, + "lat": 46.466477, + "lon": -0.8069378, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Normale et accélérée", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref": "092VE002", + "ref:EU:EVSE": "FR*S85*P85092*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3285850295, + "lat": 49.4451732, + "lon": 1.0800461, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3289801067, + "lat": 48.8478803, + "lon": 2.3509748, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Paris/Écoles/19", + "network": "Clem'", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289812953, + "lat": 48.8478373, + "lon": 2.3239811, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Paris/Bérite/3", + "network": "Belib'", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 3289812960, + "lat": 48.8499329, + "lon": 2.3442853, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Paris/Paul Painlevé/7", + "ref:FR:Paris:DSP": "75105-05", + "source": "Mairie de Paris - 05/2013", + "source:coordinates": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289826567, + "lat": 48.8477661, + "lon": 2.3468771, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 3289841736, + "lat": 48.8396798, + "lon": 2.347751, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX05*06", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289841738, + "lat": 48.841747, + "lon": 2.3392233, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 3289841744, + "lat": 48.8443621, + "lon": 2.3523143, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "5", + "email": "assistance.technique@tevgo.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "payment:credit_cards": "yes", + "phone": "+33 1 85 16 94 02", + "ref:EU:EVSE": "FR*V75*PPX05*09", + "socket:type2": "5", + "socket:typee": "5", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289841745, + "lat": 48.8410745, + "lon": 2.3519673, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX05*04", + "socket:type2": "5", + "socket:typee": "5", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289886500, + "lat": 48.8659185, + "lon": 2.2763672, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Paris | Avenue Victor Hugo 180", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalÉnergies", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*V75*PPX16*27", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289908696, + "lat": 48.8713386, + "lon": 2.2952521, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "Total Marketing France", + "ref:EU:EVSE": "FR*V75*PPX16*06", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289908698, + "lat": 48.8755883, + "lon": 2.29463, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Ubeeqo", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289908704, + "lat": 48.8703848, + "lon": 2.2869258, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Paris | Avenue Victor Hugo 60", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalÉnergies", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*V75*PPX16*22", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3289908705, + "lat": 48.8684287, + "lon": 2.2927581, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "Total Marketing France", + "ref:EU:EVSE": "FR*V75*PPX16*11", + "socket:type2": "5", + "socket:typee": "5", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3290415598, + "lat": 48.8633081, + "lon": 2.340531, + "tags": { + "amenity": "charging_station", + "name": "Paris/Colonel Driant/7" + } + }, + { + "type": "node", + "id": 3290415601, + "lat": 48.8624946, + "lon": 2.3393762, + "tags": { + "amenity": "charging_station", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3290415609, + "lat": 48.8642939, + "lon": 2.3314856, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Belib' Paris Saint-Roch", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*V75*PPX01*01", + "ref:FR:Paris:DSP": "75101-04", + "socket:type2": "4", + "socket:typee": "4", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3295037615, + "lat": 48.836623, + "lon": 2.2523807, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*64", + "socket:type2": "6", + "socket:typee": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 3307728314, + "lat": 48.8697071, + "lon": 2.3851108, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "Total Marketing France", + "ref:EU:EVSE": "FR*V75*PPX20*06", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey" + } + }, + { + "type": "node", + "id": 3307728315, + "lat": 48.8676142, + "lon": 2.3904253, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "Total Marketing France", + "ref:EU:EVSE": "FR*V75*PPX20*03", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey" + } + }, + { + "type": "node", + "id": 3307728316, + "lat": 48.8657755, + "lon": 2.3928705, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Belib", + "source": "survey" + } + }, + { + "type": "node", + "id": 3314623577, + "lat": 48.8730331, + "lon": 2.4093317, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3334419684, + "lat": 48.877002, + "lon": 2.3810722, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "BeLib" + } + }, + { + "type": "node", + "id": 3351975911, + "lat": 48.8430624, + "lon": 2.3214777, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "email": "supervision-ev.france@totalenergies.com", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "phone": "+33185169402", + "ref:EU:EVSE": "FR*V75*PPX15*23", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 05/2022", + "source:position": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3384435799, + "lat": 48.1076685, + "lon": -1.6149074, + "tags": { + "amenity": "charging_station", + "capacity:car": "1", + "level": "0", + "motorcar": "yes", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 3389059291, + "lat": 45.6856053, + "lon": -0.338554, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc Cognac", + "note": "105 Rue Basse Saint-Martin", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "16100004", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3424372282, + "lat": 46.4599467, + "lon": -1.1334822, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "normale et accélérée", + "operator": "E. Leclerc" + } + }, + { + "type": "node", + "id": 3437806695, + "lat": 48.8577629, + "lon": 2.3902031, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX11*04", + "socket:type2": "7", + "socket:typee": "7", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3442548593, + "lat": 48.3359071, + "lon": -1.1723725, + "tags": { + "amenity": "charging_station", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 3444636128, + "lat": 50.6502605, + "lon": 2.9769972, + "tags": { + "amenity": "charging_station", + "capacity": "50", + "fee": "no", + "name": "Ikea - Borne de rechage", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA" + } + }, + { + "type": "node", + "id": 3450193145, + "lat": 47.3999783, + "lon": 0.6666944, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SIEIL37" + } + }, + { + "type": "node", + "id": 3461940825, + "lat": 48.85852, + "lon": 2.4027581, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "email": "assistance.technique@tevgo.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "phone": "+33 1 85 16 94 02", + "ref:EU:EVSE": "FR*V75*PPX20*19", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3469364890, + "lat": 43.8166748, + "lon": 6.0922576, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "2x 22kW sde04 eborn", + "fee": "yes", + "operator": "eborn", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 3469625052, + "lat": 42.61917, + "lon": 2.4254673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Prades", + "name:ca": "Prada", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66149*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3476331833, + "lat": 45.8038219, + "lon": 4.8585745, + "tags": { + "amenity": "charging_station", + "maxstay": "1.5 hours", + "motorcar": "yes", + "note": "Pas sûr de l'alée sur laquelle la borne est présente", + "opening_hours": "24/7", + "ref": "MAT-017349", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3500672487, + "lat": 45.4495703, + "lon": 4.4191374, + "tags": { + "amenity": "charging_station", + "capacity:car": "2" + } + }, + { + "type": "node", + "id": 3500822663, + "lat": 45.4363701, + "lon": 4.39187, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "capacity:car": "2", + "operator": "EFFIA" + } + }, + { + "type": "node", + "id": 3500867793, + "lat": 45.4594629, + "lon": 4.3834576, + "tags": { + "amenity": "charging_station", + "capacity:car": "4", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 3500901680, + "lat": 45.4329389, + "lon": 4.4156032, + "tags": { + "amenity": "charging_station", + "capacity:car": "1", + "operator": "Nissan" + } + }, + { + "type": "node", + "id": 3517162579, + "lat": 49.320543, + "lon": 2.3252201, + "tags": { + "addr:housenumber": "5;23", + "addr:street": "Place Pierre Semard;Rue de la Gare", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Pierre Semard", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PMOUY", + "socket:type2": "2", + "socket:typee": "2", + "source": "cadastre-dgi-fr source : Direction Générale des Finances Publiques - Cadastre. Mise à jour : 2015" + } + }, + { + "type": "node", + "id": 3557801616, + "lat": 48.8025584, + "lon": 2.4255222, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "network": "La Borne Bleue", + "owner": "La Borne Bleue", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3564235028, + "lat": 44.5760713, + "lon": 6.3619348, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05114*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3566188384, + "lat": 48.8846416, + "lon": 2.3213187, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Paris/Batignolles/27", + "operator": "Belib", + "source": "survey" + } + }, + { + "type": "node", + "id": 3578040782, + "lat": 48.6009634, + "lon": 2.3617372, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Sičge Intermarché", + "ref:EU:EVSE": "FR*G29*P91086*002", + "socket:type2": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3583666224, + "lat": 48.540075, + "lon": 7.6179627, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Freshmile Entzheim", + "object:addr": "Bâtiment Blériot", + "source": "Freshmile SAS (9/6/2015)", + "survey:date": "09/06/15" + } + }, + { + "type": "node", + "id": 3583666225, + "lat": 49.1144891, + "lon": 6.1721543, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fixme": "place", + "name": "Urbis Park République", + "object:addr": "Place de la République", + "source": "Freshmile SAS (9/6/2015)", + "survey:date": "09/06/15" + } + }, + { + "type": "node", + "id": 3583666226, + "lat": 49.1145537, + "lon": 6.1720659, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fixme": "place", + "name": "Urbis Park République", + "object:addr": "Place de la République", + "source": "Freshmile SAS (9/6/2015)", + "survey:date": "09/06/15" + } + }, + { + "type": "node", + "id": 3583666227, + "lat": 49.1145816, + "lon": 6.1719689, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fixme": "place", + "name": "Urbis Park République", + "object:addr": "Place de la République", + "source": "Freshmile SAS (9/6/2015)", + "survey:date": "09/06/15" + } + }, + { + "type": "node", + "id": 3583666228, + "lat": 49.1146237, + "lon": 6.1718637, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fixme": "place", + "name": "Urbis Park République", + "object:addr": "Place de la République", + "source": "Freshmile SAS (9/6/2015)", + "survey:date": "09/06/15" + } + }, + { + "type": "node", + "id": 3597154060, + "lat": 48.8854632, + "lon": 2.2970065, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9017*03", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 3603412881, + "lat": 48.8420957, + "lon": 2.3089255, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "network": "Belib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 3635754994, + "lat": 47.7316334, + "lon": -3.4248917, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "name": "spie ouest centre", + "operator": "spie ouest centre", + "voltage": "220" + } + }, + { + "type": "node", + "id": 3643156592, + "lat": 48.8599362, + "lon": 2.371833, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 3654650759, + "lat": 48.8231334, + "lon": 2.3753184, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX13*06", + "socket:type2": "7", + "socket:typee": "7", + "source": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 3670704149, + "lat": 48.8763035, + "lon": 2.1876746, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3672844039, + "lat": 48.5963165, + "lon": 2.3698269, + "tags": { + "amenity": "charging_station", + "operator": "Groupement des Mousquetaires" + } + }, + { + "type": "node", + "id": 3708962062, + "lat": 43.7693359, + "lon": 1.3614048, + "tags": { + "access": "customers", + "addr:city": "Toulouse", + "addr:country": "FR", + "addr:postcode": "31620", + "addr:street": "Avenue de Saint-Guillan Castelnau-d'Estrétefonds", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Toulouse - Castelnau-d'Estrétefonds Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/toulousesupercharger" + } + }, + { + "type": "node", + "id": 3708962064, + "lat": 45.16721, + "lon": 1.4831106, + "tags": { + "access": "customers", + "addr:city": "Ussac", + "addr:country": "FR", + "addr:postcode": "19270", + "addr:street": "Le Griffolet", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Brive-la-Gaillarde Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla Supercharger", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "type_charge": "rapide - Supercharger", + "website": "https://www.tesla.com/findus/location/supercharger/brivelagaillardesupercharger" + } + }, + { + "type": "node", + "id": 3709746319, + "lat": 43.4931672, + "lon": -1.5186192, + "tags": { + "addr:street": "Boulevard du BAB", + "amenity": "charging_station", + "motorcar": "yes", + "note": "Boulevard du B.A.B.BP 423", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "64604001", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709746320, + "lat": 43.6642, + "lon": 0.591275, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Auch", + "note": "A CLARAC", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "32000004", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709746321, + "lat": 44.9140398, + "lon": 2.4415737, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Aurillac", + "note": "Rue de la Jordanne", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "15004002", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709746322, + "lat": 46.4082437, + "lon": -0.2232952, + "tags": { + "amenity": "charging_station", + "description:payment": "Paiement après abonnement uniquement.", + "fee": "yes", + "motorcar": "yes", + "name": "E. Leclerc Azay-le-Brûlé", + "network": "Alter Base", + "note": "la Plaine d'Azia", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "Séolis", + "payment:account_cards": "yes", + "payment:cash": "no", + "payment:cb": "no", + "ref": "79400003", + "socket:type3": "2", + "website": "https://www.seolis.net/alterbase/" + } + }, + { + "type": "node", + "id": 3709746323, + "lat": 50.7235489, + "lon": 2.7403062, + "tags": { + "addr:city": "Bailleul", + "addr:postcode": "59270", + "addr:street": "Avenue des Nations Unies", + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "59270002", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709746324, + "lat": 49.2772131, + "lon": -0.7184604, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Bayeux", + "note": "Boulevard du 6 Juin", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "14404001", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750425, + "lat": 47.0416803, + "lon": 4.8434446, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "Rue Gustave Eiffel", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "21200005", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750426, + "lat": 43.4635321, + "lon": -1.5386698, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "Zone d'Iraty", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "64200006", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750427, + "lat": 50.1806, + "lon": 3.22677, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc Cambrai", + "note": "3 rue du chateau de selles", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "59541B01", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750428, + "lat": 50.1287627, + "lon": 3.4262488, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Caudry", + "note": "Boulevard du 8 Mai 1945", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "59541001", + "socket:type3": "5", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750429, + "lat": 47.7943529, + "lon": 7.1669101, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "motorcar": "yes", + "name": "E. Leclerc Cernay", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "68703001", + "socket:type3c": "2", + "socket:type3c:output": "fast", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3709750430, + "lat": 49.5866879, + "lon": 3.6491842, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Chambry", + "note": "rue Jean Jaures", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "2000008", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750431, + "lat": 49.0371, + "lon": 3.39026, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Château-Thierry", + "note": "Rue de la Plaine", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "2400004", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750432, + "lat": 47.0978368, + "lon": -1.2818775, + "tags": { + "amenity": "charging_station", + "capacity": "20", + "fixme": "position ok, mais il y aurait maintenant 10 bornes. A vérifier sur le terrain", + "motorcar": "yes", + "name": "E. Leclerc Clisson", + "note": "Route de Nantes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "44190006", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750433, + "lat": 49.0086746, + "lon": 2.0850547, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Conflans-Sainte-Honorine", + "note": "Rue des Belles Hâtes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "78702001", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750434, + "lat": 48.2511272, + "lon": -4.4720636, + "tags": { + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Crozon", + "network": "Freshmile", + "note": "Penandreff", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "owner": "E.Leclerc, Crozon", + "ref": "29160003", + "ref:EU:EVSE": "FR*LE2*PS1YCYKCLFA", + "socket:type2": "12", + "socket:type3": "1", + "socket:typee": "8", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750435, + "lat": 50.2833081, + "lon": 2.7388484, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "note": "Avenue Jean Mermoz", + "operator": "SIPLEC", + "ref": "62000006", + "socket:type3": "6", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750436, + "lat": 48.5078782, + "lon": 2.606394, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc Dammarie-les-Lys", + "note": "544 Avenue André Ampère", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "77190004", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750437, + "lat": 48.4447165, + "lon": -2.0693399, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "La Coulebart", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "22104001", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750438, + "lat": 46.3660669, + "lon": 2.56269, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Domérat", + "note": "Rue de la Chevêche", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "3410008", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750439, + "lat": 48.737, + "lon": 1.3488, + "tags": { + "addr:street": "Boulevard de l'Europe", + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "borne Leclerc Dreux Bâtes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "28100002", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750440, + "lat": 48.4289152, + "lon": 7.6582308, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "E. Leclerc Erstein", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Erstein", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PXFYFEZAQNO", + "socket:type2": "6", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 3709750441, + "lat": 49.3075526, + "lon": 6.1186515, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Fameck", + "note": "Avenue François Mitterrand", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "57290001", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750442, + "lat": 47.7080111, + "lon": 2.636283, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "name": "E. Leclerc Gien", + "note": "Rue de la Bosserie", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "45500007", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750443, + "lat": 49.5094, + "lon": 0.22551, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "parc de l'estuaire", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "76700005", + "socket:type3": "4", + "source": "data.gouv.fr", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 3709750444, + "lat": 49.8428, + "lon": 3.3233, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "16", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Harly", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "2100009", + "ref:EU:EVSE": "FR*LE2*PATCMVSJYLE", + "socket:type2": "16", + "socket:type3": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 3709750445, + "lat": 49.2151017, + "lon": 6.1709792, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "name": "E. Leclerc Hauconcourt", + "note": "A 31 Sortie Maizières les Metz", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "57280003", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750446, + "lat": 49.140659, + "lon": -0.3375032, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc Ifs", + "note": "190 Rue de Rocquancourt", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "14123004", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750447, + "lat": 48.5042144, + "lon": -4.0725546, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "Boulevard de la République", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "29403001", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750448, + "lat": 47.7652181, + "lon": -3.3484424, + "tags": { + "addr:city": "Lanester", + "addr:housenumber": "1", + "addr:postcode": "56600", + "addr:street": "Rue François Mauriac", + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "56600001", + "socket:type3": "2", + "source": "data.gouv.fr", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 3709750449, + "lat": 49.1487735, + "lon": 0.919331, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Le Neubourg", + "note": "Route de Louviers", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "27110002", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750450, + "lat": 49.09964, + "lon": 2.7537236, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Le Plessis-Belleville", + "note": "Centre Commercial du Lièvre RN 2", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "60330002", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750452, + "lat": 46.7499687, + "lon": 4.8484378, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Lux", + "note": "27 rue charles dumoulin", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "71100022", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750453, + "lat": 48.9373257, + "lon": 2.8771617, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Mareuil-lès-Meaux", + "note": "30 MAIL DE LA GRANDE HAIE", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "77100016", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750454, + "lat": 48.9577094, + "lon": 2.916951, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Meaux", + "note": "Rue Georges Claude", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "77100009", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750455, + "lat": 49.1025052, + "lon": 0.6084826, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "Route de Rouen", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "27300004", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750456, + "lat": 49.0391119, + "lon": 2.3410405, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Moisselles", + "note": "Route Nationale 1", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "95570003", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750457, + "lat": 46.3177016, + "lon": 2.5787106, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Montluçon", + "note": "345 avenue du Président Auriol", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "3100007", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750458, + "lat": 46.4186, + "lon": 0.85426, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Montmorillon", + "note": "2 AVENUE DE PROVENCE", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "86500002", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750460, + "lat": 43.1977285, + "lon": -0.6179636, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc Oloron-Sainte-Marie", + "note": "Avenue Alexandre Fleming", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "64400003", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750461, + "lat": 48.535798, + "lon": -2.7611462, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "22190001", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750462, + "lat": 47.8642249, + "lon": -4.2346565, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "Trolimon", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "29120003", + "socket:type3": "14", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750463, + "lat": 44.8444609, + "lon": 0.1806667, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Port-Sainte-Foy-et-Ponchapt", + "note": "113 Avenue de Bordeaux", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "33220001", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750464, + "lat": 44.4640599, + "lon": 1.4216256, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "Route de Luzech", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "46090002", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750465, + "lat": 47.8706, + "lon": -3.56723, + "tags": { + "addr:city": "Quimperlé", + "addr:postcode": "29300", + "addr:street": "Rue de Pont-Aven", + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "29300002", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750466, + "lat": 47.7268598, + "lon": -3.3197827, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "name": "E. Leclerc Riantec", + "note": "lann er velin", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "56670003", + "socket:type3": "3", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750467, + "lat": 49.9126987, + "lon": 2.3376644, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "13", + "email": "web@freshmile.com", + "fee": "yes", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "network": "Freshmile", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc Rivery", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "80136001", + "ref:EU:EVSE": "FR*FR1*PX2P436SZ2U", + "socket:type2": "10", + "socket:type2_combo": "3", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750468, + "lat": 47.3776, + "lon": 1.73661, + "tags": { + "addr:city": "Romorantin-Lanthenay", + "addr:housenumber": "81", + "addr:postcode": "41200", + "addr:street": "Avenue de Paris", + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "41200003", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750469, + "lat": 49.4310012, + "lon": 1.0835596, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "level": "-1", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "76176001", + "socket:type3": "2", + "source": "data.gouv.fr", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 3709750470, + "lat": 45.6313814, + "lon": -0.9922488, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Royan", + "note": "Rue Laurent-Antoine de Lavoisier", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "17201001", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750471, + "lat": 48.8617034, + "lon": 2.1937687, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Rueil-Malmaison", + "note": "58 avenue de Fouilleuse", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "92500B01", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750472, + "lat": 50.4359526, + "lon": 3.4410177, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc", + "note": "ZA du Mont des Bruyères, Rocade Nord", + "ogr_type_c": "Accélérée", + "operator": "Siplec", + "ref": "59230002", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750473, + "lat": 49.2825602, + "lon": 4.0004488, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "Borne de recharge", + "note": "La Croix MaurencienneZone Industrielle de St-Brice", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "51370002", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750475, + "lat": 44.8838495, + "lon": -0.6914754, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "note": "34. Avenue Descartes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "33167001", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750476, + "lat": 49.2905478, + "lon": 1.0400264, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "ref": "76320002", + "socket:type3": "8", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750477, + "lat": 43.4313139, + "lon": 6.8061359, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Saint-Raphaël", + "note": "Boulevard de l'Aspé", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "83700004", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750478, + "lat": 49.3873722, + "lon": 1.0740604, + "tags": { + "addr:city": "Saint-Étienne-du-Rouvray", + "addr:postcode": "76800", + "addr:street": "Avenue de la Mare aux Daims", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "12", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "opening_hours": "Mo-Sa 08:00-20:00", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Saint-Etienne-du-Rouvray", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "76803001", + "ref:EU:EVSE": "FR*LE2*PGDZIWFR8Y4", + "socket:chademo": "1", + "socket:type2": "11", + "socket:type2_combo": "1", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750479, + "lat": 45.7418032, + "lon": -0.6247781, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "E. Leclerc Saintes Abbaye", + "note": "Cours Charles de Gaulle", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "17100006", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750480, + "lat": 45.7466869, + "lon": -0.6743151, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "name": "E. Leclerc Saintes Les Coteaux", + "note": "Rue Champagne Saint Georges", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "17100005", + "socket:type3": "2", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750481, + "lat": 49.3574742, + "lon": 6.1296703, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "name": "E. Leclerc Thionville", + "note": "20 Route d'Arlon - Linkling 3", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "57100006", + "socket:type3": "4", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709750483, + "lat": 47.8029649, + "lon": 1.0437558, + "tags": { + "amenity": "charging_station", + "fixme": "position approximative à affiner", + "motorcar": "yes", + "ogr_type_1": "T3 et EF", + "ogr_type_c": "Accélérée", + "operator": "SIPLEC", + "ref": "41100004", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3709768756, + "lat": 48.7646047, + "lon": 2.4884714, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "level": "-1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 3711512232, + "lat": 46.871169, + "lon": 0.8622406, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1220;FR*S37*E1221", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 3715477499, + "lat": 43.9175093, + "lon": 2.1440756, + "tags": { + "addr:street": "Avenue Gambetta", + "amenity": "charging_station", + "name": "Station de Recharge Netto", + "note": "Recharge gratuite", + "operator": "Groupement des Mousquetaires" + } + }, + { + "type": "node", + "id": 3715504958, + "lat": 43.9235779, + "lon": 2.1440841, + "tags": { + "addr:street": "Rue des Cordeliers", + "amenity": "charging_station", + "capacity:car": "2", + "name": "Recharge Véhicule Électrique Parking des Cordeliers" + } + }, + { + "type": "node", + "id": 3715510557, + "lat": 43.9158971, + "lon": 2.143809, + "tags": { + "addr:street": "Avenue Gambetta", + "amenity": "charging_station", + "capacity:car": "3", + "fee": "no", + "name": "Station de Recharge Véhicule Électrique Garage Renault" + } + }, + { + "type": "node", + "id": 3715510558, + "lat": 43.9157918, + "lon": 2.1441244, + "tags": { + "addr:street": "Rue du Capitaine Treilhes", + "amenity": "charging_station", + "fee": "no", + "name": "Station de Recharge Véhicule Électrique Garage Nissan" + } + }, + { + "type": "node", + "id": 3715536369, + "lat": 44.05304, + "lon": 2.1594163, + "tags": { + "addr:street": "Boulevard Flandres Dunkerque", + "amenity": "charging_station", + "name": "Recharge Véhicule Électrique Intermaché Super" + } + }, + { + "type": "node", + "id": 3731931649, + "lat": 46.9341506, + "lon": -1.4119733, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85197*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3744232828, + "lat": 44.2376712, + "lon": 5.1900876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "mollans sur ouvèze Place du 19 Mars 1961", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDED", + "ref:EU:EVSE": "FR*EBN*PIOEFVEOSYD", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3761241001, + "lat": 49.0960306, + "lon": 1.4634416, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3770651512, + "lat": 48.0902436, + "lon": -0.7553439, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "KiWhipass", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Louis De Broglie - Parking TE53", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S53*P53054*002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 3781186992, + "lat": 43.6163274, + "lon": 3.8190517, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*002", + "ref:FR:REVEO": "FR-M34-E34172-002-1;FR-M34-E34172-002-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 3790468909, + "lat": 48.8634234, + "lon": 2.3526364, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Saint-Martin/204", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX03*01", + "ref:FR:Paris:DSP": "75103-14", + "socket:type2": "4", + "socket:typee": "4", + "source": "survey;Mairie de Paris - 05/2013", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3797378089, + "lat": 43.5160828, + "lon": 0.7622379, + "tags": { + "amenity": "charging_station", + "amenity_1": "drinking_water", + "capacity": "4", + "fee": "no", + "voltage": "230" + } + }, + { + "type": "node", + "id": 3800721881, + "lat": 43.9604563, + "lon": 5.7803307, + "tags": { + "amenity": "charging_station", + "name": "Borne electrique" + } + }, + { + "type": "node", + "id": 3819469493, + "lat": 48.8046601, + "lon": 2.2899509, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Sigeif", + "source": "survey 12/2021", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3823484158, + "lat": 48.8666175, + "lon": 2.3580005, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3825351961, + "lat": 46.7791899, + "lon": -0.5670858, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB07005A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3838888900, + "lat": 48.585774, + "lon": 2.3032943, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "current:ac": "yes", + "current:dc": "yes", + "operator": "Auchan" + } + }, + { + "type": "node", + "id": 3845085109, + "lat": 48.082211, + "lon": -1.6785122, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "no", + "mapillary": "370947720938454", + "opening_hours": "Mo-Fr 09:30-20:30; Sa 09:00-20:00", + "operator": "izivia - groupe EDF", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3847703655, + "lat": 48.0924037, + "lon": -1.6742128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "SDE35", + "socket:schuko": "2", + "socket:type3": "2", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 3847703656, + "lat": 48.1061429, + "lon": -1.6766737, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "level": "-1", + "operator": "Rennes Métropole", + "parking:fee": "yes", + "socket:chademo": "1", + "socket:schuko": "1", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 3847703957, + "lat": 48.123824, + "lon": -1.6605587, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "Grolleau", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD357012;FR*S35*PSD357011", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 3847703959, + "lat": 48.1305119, + "lon": -1.6382984, + "tags": { + "amenity": "charging_station", + "fee": "no", + "opening_hours": "Mo-Sa 08:30-12:00,14:00-19:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 3847703960, + "lat": 48.1311176, + "lon": -1.6372501, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "Mo-Sa 08:30-12:00,14:00-19:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 3847894218, + "lat": 45.7206304, + "lon": 4.9305935, + "tags": { + "amenity": "charging_station", + "capacity": "2;1", + "disused:amenity": "charging_station", + "disused:network": "Bluely", + "end_date": "2020-08-31", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3847894861, + "lat": 45.7213801, + "lon": 4.9278665, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3866790657, + "lat": 48.0631398, + "lon": -1.6256527, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "Mo-Sa 08:45-20:30", + "operator": "SIPLEC", + "socket:schuko": "2", + "socket:type3": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 3885855229, + "lat": 48.732192, + "lon": -3.4626141, + "tags": { + "amenity": "charging_station", + "charging_station": "2" + } + }, + { + "type": "node", + "id": 3893659645, + "lat": 18.0588477, + "lon": -63.0141839, + "tags": { + "amenity": "charging_station", + "name": "Point Luciole" + } + }, + { + "type": "node", + "id": 3894057525, + "lat": 48.8586511, + "lon": 2.384392, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3904913457, + "lat": 48.8481462, + "lon": 2.3153959, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "name": "Paris/Duroc/2", + "operator": "Belib'", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3918363956, + "lat": 43.8849954, + "lon": -0.50303, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*70", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 3919289380, + "lat": 48.1555516, + "lon": -1.7072787, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Ouest Charge - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD355512;FR*S35*PSD355511", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 3920013080, + "lat": 48.1181823, + "lon": -1.604837, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "mapillary": "317424376698117", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD351612;FR*S35*PSD351611", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 3921019980, + "lat": 48.2754239, + "lon": -3.5718223, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 3921150613, + "lat": 48.8458206, + "lon": 2.3955136, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Fabre d'Églantine/2", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0096", + "ref:FR:Paris:DSP": "75112-24", + "socket:type3c": "5", + "socket:typee": "1", + "source": "survey", + "source:ref:FR:Paris:DSP": "opendata.paris.fr:Autolib - 2014-02-11", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3921150614, + "lat": 48.84439, + "lon": 2.4070825, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX12*06", + "socket:type2": "6", + "socket:typee": "6", + "source": "survey", + "source:ref:EU:EVSE": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3926983181, + "lat": 46.9445958, + "lon": 0.8949141, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1470;FR*S37*E1449", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 3931866938, + "lat": 48.6900204, + "lon": 6.1751624, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:rfid": "yes", + "capacity": "8", + "charge": "1€/1H", + "fee": "yes", + "indoor": "yes", + "level": "-2", + "location": "underground", + "official_name": "MGN_Parking Thiers", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "8" + } + }, + { + "type": "node", + "id": 3931866939, + "lat": 48.6921462, + "lon": 6.1849414, + "tags": { + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "Park&Charge", + "capacity": "2", + "location": "underground", + "operator": "Indigo", + "payment:credit_cards": "yes", + "socket:schuko": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 3931866940, + "lat": 48.7023823, + "lon": 6.2252131, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "1€/1H", + "description:payment": "RFID Card", + "fee": "yes", + "official_name": "MGN_Parking Relais Mouzimpré", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 3931866941, + "lat": 48.6490708, + "lon": 6.1460423, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "0,5€ TTC/30 min de charge", + "covered": "yes", + "description": "Parking Relais Brabois", + "description:payment": "RFID card", + "fee": "yes", + "location": "indoor", + "official_name": "MGN_Parking Relais CHU", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 3931904598, + "lat": 48.6914375, + "lon": 6.1265763, + "tags": { + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "3", + "fee": "no", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3932041301, + "lat": 48.6821437, + "lon": 6.1979408, + "tags": { + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "3", + "fee": "no", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "socket:chademo": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 3933500759, + "lat": 48.7083846, + "lon": 6.2423824, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "MMA Assurances", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3933500760, + "lat": 48.6910585, + "lon": 6.1312345, + "tags": { + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "CAR Avenue", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 3933500761, + "lat": 48.6904235, + "lon": 6.130682, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Polygone Laxou", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3943116330, + "lat": 44.9889366, + "lon": 4.9766963, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26004*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3952010145, + "lat": 48.8586355, + "lon": 2.3146003, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Paris/Constantine/25", + "network": "Belib'", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3952174566, + "lat": 46.6176698, + "lon": -1.6590927, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "fixme": "Vérifier le nombre de places dispo (capacity)", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85152*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3959987410, + "lat": 48.8251166, + "lon": 2.3726312, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "disused:amenity": "car_sharing", + "name": "Paris/Eugène Oudiné/51", + "network": "Autolib'", + "note": "Closed forever since July 2018", + "opening_hours": "24/7", + "operator": "Ubeeqo", + "ref:FR:Paris:DSP": "75113-23", + "source": "Mairie de Paris - 05/2013;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 3965502695, + "lat": 47.7346169, + "lon": -3.4273811, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56162*B", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 3970584151, + "lat": 47.8178064, + "lon": -2.133333, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Abbé de La Vallière", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56033*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3973554897, + "lat": 48.5400652, + "lon": 7.6177314, + "tags": { + "amenity": "charging_station", + "name": "Freshmile", + "operator": "Freshmile", + "source": "http://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3973558101, + "lat": 48.2722379, + "lon": 7.4640645, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3973560608, + "lat": 48.6444289, + "lon": 1.8351281, + "tags": { + "amenity": "charging_station", + "name": "Rambouillet Prairie", + "operator": "Freshmile", + "source": "http://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3973561239, + "lat": 48.6455101, + "lon": 1.8205378, + "tags": { + "amenity": "charging_station", + "name": "Rambouillet Hôtel de Ville", + "operator": "Freshmile", + "source": "http://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3973567912, + "lat": 48.6435721, + "lon": 1.8311737, + "tags": { + "amenity": "charging_station", + "location": "indoor", + "name": "Rambouillet Séquoia", + "note": "probablement à l'intérieur du parking Sequoia", + "operator": "Freshmile", + "source": "http://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3973568841, + "lat": 49.1063824, + "lon": 6.7091906, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "name": "Saint-Avold", + "operator": "Freshmile", + "source": "http://www.freshmile.com/", + "website": "https://my.freshmile.com/charge/CJQR1" + } + }, + { + "type": "node", + "id": 3973570164, + "lat": 45.7873753, + "lon": 4.7836003, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de Recharge, Ecully", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "EHBA, EBYX", + "ref:EU:EVSE": "FR*CN1*PVVMVUP", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 3973587237, + "lat": 49.1156936, + "lon": 6.1714786, + "tags": { + "amenity": "charging_station", + "level": "-1", + "operator": "Freshmile", + "ref": "META, METB, METC, METD", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3981638478, + "lat": 48.6431525, + "lon": 1.8292047, + "tags": { + "amenity": "charging_station", + "name": "Rambouillet les Vignes Penthièvre", + "operator": "Freshmile", + "source": "http://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 3984407483, + "lat": 48.8359465, + "lon": 0.9132279, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900038", + "ref:EU:EVSE": "FR*S27*PBRETEUIL*LAFITTE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 3988130179, + "lat": 47.9207762, + "lon": 6.6615163, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Commune de Rupt-sur-Moselle", + "payment:token": "required", + "reservation": "no", + "socket:cee_blue": "4" + } + }, + { + "type": "node", + "id": 3988130180, + "lat": 48.1854887, + "lon": 6.4451793, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Épinal - Aire Camping-car du Port", + "opening_hours": "24/7", + "operator": "Ville d'Épinal", + "reservation": "no", + "socket:cee_blue": "4" + } + }, + { + "type": "node", + "id": 3988130181, + "lat": 48.2215116, + "lon": 6.4317665, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Autocars Marcot", + "opening_hours": "Mo-Sa 09:00-12:00, 14:00-18:00", + "operator": "Autocars Marcot", + "reservation": "yes", + "socket:cee_blue": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 3988130184, + "lat": 48.2502089, + "lon": 6.4217095, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Immod", + "opening_hours": "Mo-Sa 09:00-12:00, 14:00-18:00", + "operator": "Immod", + "reservation": "required", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 3988130185, + "lat": 47.8889966, + "lon": 6.7737354, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Intermarché Le Thillot", + "opening_hours": "24/7", + "operator": "Euro-Relais", + "reservation": "no", + "socket:cee_blue": "2" + } + }, + { + "type": "node", + "id": 3988130186, + "lat": 48.1759268, + "lon": 6.4780792, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Nissan Épinal", + "note": "Position à affiner", + "opening_hours": "Mo-Fr 08:00-12:00, 14:00-18:00; Sa 08:00-12:00", + "operator": "Nissan", + "operator:wikidata": "Q20165", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 3988130187, + "lat": 48.1777145, + "lon": 6.4407028, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "name": "Parking Effia Épinal TGV", + "opening_hours": "24/7", + "operator": "Effia", + "operator:wikidata": "Q3045894", + "parking:fee": "yes", + "reservation": "no", + "scooter": "yes", + "socket:typee": "4", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 3988130188, + "lat": 48.1768905, + "lon": 6.448314, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "fee": "no", + "location": "indoor", + "motorcar": "yes", + "name": "Épinal - Q-Park Saint-Nicolas", + "opening_hours": "24/7", + "operator": "Q-Park", + "operator:wikidata": "Q1127798", + "parking:fee": "yes", + "socket:cee_blue": "3" + } + }, + { + "type": "node", + "id": 3988130189, + "lat": 48.3617545, + "lon": 6.3037512, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Renault Charmes", + "note": "Position à affiner", + "opening_hours": "Mo-Fr 08:00-19:00; Sa 08:00-12:00", + "operator": "Renault", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 3988130190, + "lat": 48.3470266, + "lon": 5.6926451, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Renault Neufchâteau", + "opening_hours": "Mo-Fr 08:30-12:00, 14:00-18:30", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "ref": "REN331", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3988130191, + "lat": 48.2844856, + "lon": 6.9425225, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:30-12:00, 14:00-18:00; Sa 08:30-12:00, 14:00-17:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "ref": "REN329", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3988130192, + "lat": 48.0198338, + "lon": 6.5999549, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Renault Saint-Étienne-lès-Remiremont", + "opening_hours": "Mo-Sa 08:30-12:00, 14:00-18:30", + "operator": "Renault", + "operator:wikidata": "Q6686", + "socket:type3": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 3988130193, + "lat": 48.2035888, + "lon": 5.9388588, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Renault Vittel", + "opening_hours": "Mo-Fr 08:00-12:00,14:00-17:00; Sa 08:00-12:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "ref": "REN332", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3988130194, + "lat": 48.1869339, + "lon": 6.4761346, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Renault Épinal", + "opening_hours": "Mo-Sa 08:30-12:00, 14:00-18:30", + "operator": "Renault", + "operator:wikidata": "Q6686", + "ref": "REN328", + "socket:type3": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 3988378451, + "lat": 48.3354466, + "lon": 5.7009779, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "6", + "fee": "no", + "motorcar": "yes", + "name": "Rebeuville - Aire Camping-car", + "opening_hours": "24/7", + "operator": "Communauté de communes Bassin de Neufchâteau", + "reservation": "no", + "socket:cee_red_16a": "6" + } + }, + { + "type": "node", + "id": 3988378452, + "lat": 48.3619682, + "lon": 5.7387894, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "maxstay": "6 hours", + "motorcar": "yes", + "name": "Rollainville - Aire de service", + "opening_hours": "24/7", + "operator": "Communauté de communes Bassin de Neufchâteau", + "payment:coins": "yes", + "reservation": "no", + "socket:cee_blue": "2" + } + }, + { + "type": "node", + "id": 3988378453, + "lat": 47.9481864, + "lon": 6.7897394, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Hôtel Restaurant L'Angélus", + "opening_hours": "Su off", + "reservation": "no", + "socket:cee_red_16a": "1", + "website": "https://www.angelus88.fr/" + } + }, + { + "type": "node", + "id": 3988468051, + "lat": 48.0480249, + "lon": 6.9367319, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "Mo-Su 12:00-14:00", + "operator": "Auberge des Hauts Viaux", + "payment:cash": "yes", + "reservation": "required", + "socket:cee_red_16a": "1", + "website": "http://www.hautsviaux.fr/" + } + }, + { + "type": "node", + "id": 4003906467, + "lat": 46.3604582, + "lon": -0.2966336, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Véhicules électriques", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79048P0012A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4011681450, + "lat": 48.818814, + "lon": 2.3624204, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "uberqo", + "source": "survey 2021" + } + }, + { + "type": "node", + "id": 4012397291, + "lat": 49.285785, + "lon": 0.1864447, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET100", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4026457149, + "lat": 48.8735788, + "lon": 2.391171, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4027236693, + "lat": -21.3406368, + "lon": 55.489985, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4031243053, + "lat": 48.766, + "lon": 2.470911, + "tags": { + "amenity": "charging_station", + "capacity": "6" + } + }, + { + "type": "node", + "id": 4031336185, + "lat": 48.9462267, + "lon": 2.3034328, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 4033391088, + "lat": 48.8703897, + "lon": 2.3453082, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Uzès/1", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0008", + "ref:FR:Paris:DSP": "75102-12", + "socket:type3c": "5", + "source": "local knowledge;https://fr.chargemap.com/belib-1-3-rue-d-uzes-paris.html", + "source:ref:FR:Paris:DSP": "opendata.paris.fr:Autolib - 2014-02-11", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4047565900, + "lat": 48.6550538, + "lon": -3.632472, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Lannion-Trégor Agglomération", + "source": "LTC" + } + }, + { + "type": "node", + "id": 4047592120, + "lat": 48.8228752, + "lon": -3.4971693, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "source": "LTC" + } + }, + { + "type": "node", + "id": 4051019812, + "lat": 46.1629427, + "lon": -1.1544183, + "tags": { + "amenity": "charging_station", + "name": "Verdun" + } + }, + { + "type": "node", + "id": 4058187404, + "lat": 45.1843282, + "lon": 0.7155422, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24322*006", + "ref:EU:EVSE": "FR*S24*PMB24*84", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4071505621, + "lat": 48.0297564, + "lon": -1.7583969, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD351412;FR*S35*PSD351411", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 4071505622, + "lat": 48.0733944, + "lon": -1.846683, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD355712;FR*S35*PSD355711", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 4071505623, + "lat": 48.0823978, + "lon": -1.6775158, + "tags": { + "amenity": "charging_station", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505625, + "lat": 48.0931523, + "lon": -1.675076, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no", + "level": "-1", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505626, + "lat": 48.1021508, + "lon": -1.6730733, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "level": "-1", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505627, + "lat": 48.1023538, + "lon": -1.6734414, + "tags": { + "amenity": "charging_station", + "level": "-1", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505628, + "lat": 48.1061492, + "lon": -1.6771622, + "tags": { + "amenity": "charging_station", + "level": "-1", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505629, + "lat": 48.1061709, + "lon": -1.6769611, + "tags": { + "amenity": "charging_station", + "level": "-1", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505630, + "lat": 48.1076608, + "lon": -1.6149589, + "tags": { + "amenity": "charging_station", + "level": "0", + "source": "data.rennes-metropole.fr", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4071505631, + "lat": 48.1084824, + "lon": -1.6666669, + "tags": { + "amenity": "charging_station", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505632, + "lat": 48.1084791, + "lon": -1.6797275, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "sde35", + "source": "data.rennes-metropole.fr", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4071505634, + "lat": 48.1108287, + "lon": -1.6735004, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "level": "0", + "operator": "C-PARK", + "source": "data.rennes-metropole.fr", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4071505635, + "lat": 48.1110086, + "lon": -1.68338, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505636, + "lat": 48.1109742, + "lon": -1.6833812, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505637, + "lat": 48.1115579, + "lon": -1.6703403, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505638, + "lat": 48.1135229, + "lon": -1.6862328, + "tags": { + "amenity": "charging_station", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505639, + "lat": 48.1149425, + "lon": -1.7135827, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD357211;FR*S35*PSD357212", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4071505640, + "lat": 48.1154771, + "lon": -1.677096, + "tags": { + "amenity": "charging_station", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505646, + "lat": 48.1346859, + "lon": -1.5332588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SDE35", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 4071505648, + "lat": 48.1811365, + "lon": -1.6365776, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD351012", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 4075284986, + "lat": 48.8406068, + "lon": 2.5893365, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 4075441327, + "lat": 48.8387967, + "lon": 2.5858492, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Copernic", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "operator": "monautopartage", + "ref": "203", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4080808425, + "lat": 49.4418414, + "lon": 1.0878255, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*019", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4080808426, + "lat": 49.4418604, + "lon": 1.0878961, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*019", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4129991795, + "lat": 48.6763008, + "lon": 2.1692756, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 4129991796, + "lat": 48.676293, + "lon": 2.1693149, + "tags": { + "amenity": "charging_station", + "charging_station:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 4129991797, + "lat": 48.6762878, + "lon": 2.1693502, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 4129991798, + "lat": 48.6762818, + "lon": 2.1693868, + "tags": { + "amenity": "charging_station", + "charging_station:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 4161570966, + "lat": 48.259216, + "lon": 7.4556096, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Borne de charge, rue Sainte-Foy, Sélestat", + "operator": "Freshmile", + "ref": "FXFJ", + "socket:type2:output": "7", + "socket:type3:output": "7", + "socket:typee:output": "3", + "source": "https://my.freshmile.com/charge/FXFJ1" + } + }, + { + "type": "node", + "id": 4174789180, + "lat": 47.6262002, + "lon": -0.7116683, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49176*001", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4176169080, + "lat": 48.8641016, + "lon": 2.3436793, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "capacity": "4", + "name": "Paris/Jean-Jacques Rousseau/62", + "ref:FR:Paris:DSP": "75101-03", + "source": "survey", + "source:ref:FR:Paris:DSP": "opendata.paris.fr:Autolib - 2016-03-21", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4179216371, + "lat": 45.7561053, + "lon": 4.8014448, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY503A" + } + }, + { + "type": "node", + "id": 4195770977, + "lat": 46.7051619, + "lon": 1.1116227, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4195773252, + "lat": 47.368338, + "lon": 0.7278543, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 4202519996, + "lat": 46.7961372, + "lon": -0.3581575, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB12228A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4212170891, + "lat": 46.9850548, + "lon": -0.4541516, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB10078A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4225807400, + "lat": 48.7926837, + "lon": 2.3370561, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33 805 021 480", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "socket:type2": "2", + "socket:type2:output": "7.4 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 4227217465, + "lat": 47.1015678, + "lon": -0.9944393, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49264*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 4238745301, + "lat": 48.7904652, + "lon": 2.3612334, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "Villejuif/René Hamon/30", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4253095688, + "lat": 44.479972, + "lon": 4.24175, + "tags": { + "access": "yes", + "addr:place": "Place de la Gare", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07110*A", + "ref:EU:EVSE": "FR*S07*P07110*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 4253097938, + "lat": 44.6208512, + "lon": 4.3925022, + "tags": { + "addr:street": "Place Airette", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07019*A", + "ref:EU:EVSE": "FR*S07*P07019*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 4268470284, + "lat": 48.8692418, + "lon": 2.3812363, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "Total Marketing France", + "ref:EU:EVSE": "FR*V75*PPX20*10", + "socket:type2": "5", + "socket:typee": "5", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey" + } + }, + { + "type": "node", + "id": 4277898689, + "lat": 45.3805586, + "lon": 4.7557587, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge Saint-Pierre-de-Boeuf", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "parking:fee": "no", + "ref": "PUVY, PUKN", + "ref:EU:EVSE": "FR*CN1*PFXETRZ", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 4277898690, + "lat": 43.5242538, + "lon": 0.1617158, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "note": "22 kW, 2 kW", + "operator": "Freshmile", + "ref": "GDWE", + "source": "https://www.freshmile.com/", + "website": "https://my.freshmile.com/charge/GDWE2", + "wheelchair": "limited" + } + }, + { + "type": "node", + "id": 4280559266, + "lat": 43.69749, + "lon": 0.083169, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "GUDS", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280567185, + "lat": 43.7031387, + "lon": -0.2364847, + "tags": { + "amenity": "charging_station", + "description": "Borne de Charge, Place de la Garlande - Parking, Barcelonne-du-Gers", + "operator": "Freshmile", + "ref": "JFSF", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280583694, + "lat": 43.474595, + "lon": 0.9156885, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "KTRE", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280606765, + "lat": 43.4905824, + "lon": 0.9297465, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "MGBY", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280621060, + "lat": 43.5213962, + "lon": 0.7619707, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "Borne CSQV", + "operator": "Freshmile", + "ref": "CSQV", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280636531, + "lat": 43.4309398, + "lon": 0.5793226, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "UWFG", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280649489, + "lat": 43.4917659, + "lon": 0.5922582, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "DAGT", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280906544, + "lat": 43.6362969, + "lon": 0.5857656, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "NHDX", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280924852, + "lat": 43.6489175, + "lon": 0.5904913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "ref": "PBXS", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280939006, + "lat": 43.8842568, + "lon": 0.237334, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "QUUW", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280943818, + "lat": 43.6300005, + "lon": 0.8731382, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "QUEH", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280952389, + "lat": 43.5143808, + "lon": 0.406916, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "XEGF", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4280957367, + "lat": 43.7119697, + "lon": 0.6255518, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "BUKF", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4281941679, + "lat": 48.8362599, + "lon": 0.9181368, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900001", + "ref:EU:EVSE": "FR*S27*PBRETEUIL*HOUDOUARD", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4287274339, + "lat": -21.3272026, + "lon": 55.4716915, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge Carrefour" + } + }, + { + "type": "node", + "id": 4287274340, + "lat": -21.3276765, + "lon": 55.4680128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge MrBricolage" + } + }, + { + "type": "node", + "id": 4287303448, + "lat": -21.3344783, + "lon": 55.4602421, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 4287303449, + "lat": -21.3349257, + "lon": 55.460551, + "tags": { + "amenity": "charging_station", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 4291003291, + "lat": 43.9500003, + "lon": -0.0431243, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "PFTP", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4291033462, + "lat": 43.8592947, + "lon": 0.1031283, + "tags": { + "amenity": "charging_station", + "description": "Borne de charge, Rue de Rochefort, Eauze", + "operator": "Freshmile", + "ref": "QCUD", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4291791725, + "lat": 42.7008856, + "lon": 2.8954892, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4292656005, + "lat": 43.9510194, + "lon": 0.2011733, + "tags": { + "amenity": "charging_station", + "description": "Borne de Charge, Boulevard du Nord, Montréal", + "operator": "Freshmile", + "ref": "ANTS", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4292703089, + "lat": 43.7578808, + "lon": -0.032103, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "ANUB", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4292712622, + "lat": 43.7578842, + "lon": 0.4607811, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "QWUF", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4292749282, + "lat": 43.6077728, + "lon": 0.5917542, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "BDML", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4293351025, + "lat": 48.8724584, + "lon": 2.3994935, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "email": "assistance.technique@tevgo.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "phone": "+33 1 85 16 94 02", + "ref:EU:EVSE": "FR*V75*PPX20*16", + "socket:type2": "5", + "socket:typee": "5", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4294634581, + "lat": 43.8502279, + "lon": 0.6663224, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "ref": "QUBY", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294659210, + "lat": 43.934299, + "lon": 0.6251754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "ref": "SCKK", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294669337, + "lat": 43.9983227, + "lon": 0.7572754, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "XECN", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294679942, + "lat": 43.8909759, + "lon": 0.7705611, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "CSEE", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294689527, + "lat": 43.4287551, + "lon": 0.3068024, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "VVWJ", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294694445, + "lat": 43.7229311, + "lon": 0.9783933, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "PLSM", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294704313, + "lat": 43.6136785, + "lon": 1.079443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "ref": "TJGL", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294854465, + "lat": 43.5781391, + "lon": 0.3283108, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "YFYX", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294869165, + "lat": 43.657036, + "lon": -0.085605, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "CJGE", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294877341, + "lat": 43.882883, + "lon": 0.3819103, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "DMUN", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4294887507, + "lat": 43.7569724, + "lon": 0.3012405, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "FDEX", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4305901852, + "lat": 48.6088887, + "lon": -4.2994036, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29LBEA", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4307143222, + "lat": 48.2616329, + "lon": 7.4541068, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Borne de charge, Square Albert Schweitzer, Sélestat", + "operator": "Freshmile", + "ref": "FHWN", + "socket:type2:output": "7", + "socket:type3:output": "7", + "socket:typee:output": "3", + "source": "https://my.freshmile.com/charge/FHWN1" + } + }, + { + "type": "node", + "id": 4307598196, + "lat": 48.5869646, + "lon": 7.7525598, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4307602802, + "lat": 48.5813293, + "lon": 7.7385744, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Eurométropole", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PRTRSPB", + "socket:type2": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 4317598800, + "lat": 50.7351376, + "lon": 2.2709206, + "tags": { + "amenity": "charging_station", + "operator": "Auchan", + "operator:wikidata": "Q758603" + } + }, + { + "type": "node", + "id": 4318131991, + "lat": 44.5385204, + "lon": 4.2918429, + "tags": { + "addr:street": "Place Les Vergnades", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07132*A", + "ref:EU:EVSE": "FR*S07*P07132*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 4318462412, + "lat": 46.8266849, + "lon": 2.1163878, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Chezal Benoit", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "NPSQ", + "ref:EU:EVSE": "FRS1806501", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318466312, + "lat": 47.1626704, + "lon": 2.0500209, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Méreau", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "MAFV", + "ref:EU:EVSE": "FRS1814801", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318468268, + "lat": 47.3148564, + "lon": 2.2548881, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Neuvy-sur-Barangeon", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "WNKA", + "ref:EU:EVSE": "FRS1816501", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318477286, + "lat": 47.3503036, + "lon": 2.1958933, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Nançay", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "AUFD", + "ref:EU:EVSE": "FRS1815901", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318477354, + "lat": 46.9925082, + "lon": 2.1183329, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Charost", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "TFBK", + "ref:EU:EVSE": "FRS1805501", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318498014, + "lat": 47.4736265, + "lon": 2.8750127, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Lere", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "DSKS", + "ref:EU:EVSE": "FRS1812501", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318504149, + "lat": 47.2215342, + "lon": 2.069125, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Place Fernand Micouraud", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "SXHN", + "ref:EU:EVSE": "FRS1827902", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318507865, + "lat": 47.2226211, + "lon": 2.0649544, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Gaucherie", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "BPFP", + "ref:EU:EVSE": "FRS1827901", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318510030, + "lat": 47.2261011, + "lon": 2.0601127, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Gare de Vierzon", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "KVNX", + "ref:EU:EVSE": "FRS1827904", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318514927, + "lat": 47.2454768, + "lon": 2.0681051, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Parc d'Activités de Vierzon", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "LKUT", + "ref:EU:EVSE": "FRS1827905", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318517925, + "lat": 47.1429409, + "lon": 1.8445298, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Gracay", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "HVGG", + "ref:EU:EVSE": "FRS1810301", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318520624, + "lat": 47.2317395, + "lon": 2.4901981, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Menetou-Salon", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "WGSH", + "ref:EU:EVSE": "FRS1814501", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318523795, + "lat": 47.1449001, + "lon": 2.42922, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Fussy", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "TYTG", + "ref:EU:EVSE": "FRS1809701", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4318525768, + "lat": 47.2258485, + "lon": 2.3184652, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Allogny", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "GHSF", + "ref:EU:EVSE": "FRS1800401", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4325641706, + "lat": 48.5780857, + "lon": -2.0608168, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD356412;FR*S35*PSD356411", + "ref:FR:SDE35": "FR*S35*35228*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016", + "website": "http://www.pleurtuit.com/contacts/bea-borne-de-recharge-electrique/" + } + }, + { + "type": "node", + "id": 4327306584, + "lat": 47.5897915, + "lon": 0.9082238, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4338089880, + "lat": 47.6752825, + "lon": -2.5707378, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56247*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4338217821, + "lat": 45.5902511, + "lon": 4.7703887, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "FCVW, ELJX", + "ref:EU:EVSE": "FR*CN1*PNTMZTB", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4338237431, + "lat": 46.8630547, + "lon": 1.7160893, + "tags": { + "access": "customers", + "addr:city": "Coings", + "addr:country": "FR", + "addr:postcode": "36130", + "addr:street": "Route Départementale 920", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Châteauroux Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chateauroux" + } + }, + { + "type": "node", + "id": 4339498776, + "lat": 45.2035574, + "lon": 4.8141795, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "FHWR, FJWK", + "ref:EU:EVSE": "FR*CN1*PHEWNUT", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4339617834, + "lat": 45.5292048, + "lon": 4.867877, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Romain-en-Gal", + "network": "move in pure", + "opening_hours": "24/7", + "owner": "CNR", + "ref": "LYHQ, MUQN", + "ref:EU:EVSE": "FR*CN1*PPBFBFV", + "socket:chademo": "1", + "socket:chademo:output": "40", + "socket:type2": "1", + "socket:type2:output": "43", + "socket:type2_combo": "1", + "socket:type2_combo:output": "40" + } + }, + { + "type": "node", + "id": 4339628233, + "lat": 45.0705419, + "lon": 4.8286289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "PLHJ, PNRN", + "ref:EU:EVSE": "FR*CN1*PEUBESN", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 4339632052, + "lat": 43.9630864, + "lon": 4.7998688, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "5€/45min", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "CLTX", + "ref:EU:EVSE": "FR*CN1*PKZGQXC", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2:output": "50kW", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4339636135, + "lat": 43.801501, + "lon": 4.6564251, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "3230541323849747", + "motorcar": "yes", + "name": "Tarascon", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "HTMJ, AKLC", + "ref:EU:EVSE": "FR*CN1*PRSXCTV", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/", + "survey:date": "2019-09-08" + } + }, + { + "type": "node", + "id": 4339654409, + "lat": 44.5540496, + "lon": 4.7443589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "PDMM, PEWX", + "ref:EU:EVSE": "FR*CN1*PWFKGFX", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4339695075, + "lat": 44.9194307, + "lon": 4.8608802, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "Vérifier les types de prises", + "motorcar": "yes", + "name": "Soyons", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "FLBM, GCBV", + "ref:EU:EVSE": "FR*CN1*PJGCECV", + "socket:chademo": "2", + "socket:chademo:output": "50", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4340306129, + "lat": 43.3836104, + "lon": 4.8087931, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Port-Saint-Louis", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "JKUA, KACL", + "ref:EU:EVSE": "FR*CN1*PKEYUDK", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4340327995, + "lat": 46.1087882, + "lon": 5.8298604, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "NDJF, NLRW", + "ref:EU:EVSE": "FR*CN1*PYNDRQT", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 4340703119, + "lat": 46.800692, + "lon": 1.3535593, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4342416024, + "lat": 43.851049, + "lon": 5.823952, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Auchan" + } + }, + { + "type": "node", + "id": 4351084468, + "lat": 48.6173794, + "lon": -4.2112673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29HCQY", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4351298855, + "lat": 45.8374129, + "lon": 5.2859959, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "KDTE, LASG", + "ref:EU:EVSE": "FR*CN1*PXRAUSA", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4351325779, + "lat": 45.9568526, + "lon": 5.8343706, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "mapillary": "526043285429328", + "motorcar": "yes", + "name": "Seyssel", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "LKXQ, LXLN", + "ref:EU:EVSE": "FR*CN1*PTUZTTN", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/", + "survey:date": "2019-07-10" + } + }, + { + "type": "node", + "id": 4351401071, + "lat": 43.6740188, + "lon": 4.6181422, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Arles", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "payment:credit_cards": "yes", + "ref": "ALHR, HPCJ", + "ref:EU:EVSE": "FR*CN1*PDFWYXZ", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4351411764, + "lat": 45.6909516, + "lon": 5.8954081, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "QYJR, QPMB", + "ref:EU:EVSE": "FR*CN1*PDJCNGB", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4351441513, + "lat": 45.7588884, + "lon": 5.7058551, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "TFKG, REMS", + "ref:EU:EVSE": "FR*CN1*PUJFDGE", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 4356331711, + "lat": 48.6488094, + "lon": 2.563317, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "8", + "charging_station:output": "50 kW", + "description": "borne toujours présente mais définitivement coupée. décision de remplacement ou de retrait pas encore connu", + "fee": "yes", + "manufacturer": "EVTronic", + "motorcar": "yes", + "network": "Corri-Door", + "opening_hours": "off", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*23*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 4357834799, + "lat": 43.6036348, + "lon": 7.0110567, + "tags": { + "access": "customers", + "addr:city": "Mougins", + "addr:country": "FR", + "addr:housenumber": "205", + "addr:postcode": "06250", + "addr:street": "Avenue du Golf", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Mougins Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/mouginssupercharger" + } + }, + { + "type": "node", + "id": 4360138432, + "lat": 48.4611304, + "lon": 7.4822856, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "TXVJ", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4360148279, + "lat": 48.0118496, + "lon": -4.1046585, + "tags": { + "addr:city": "Quimper", + "addr:postcode": "29000", + "addr:street": "Allée Sully", + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "UCYJ", + "source": "www.freshmile.com" + } + }, + { + "type": "node", + "id": 4360163177, + "lat": 48.0007455, + "lon": -4.3382099, + "tags": { + "addr:city": "Landudec", + "addr:postcode": "29710", + "addr:street": "Rue des Écoles", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref": "VBSN", + "ref:EU:EVSE": "FRS29PSDE29VBSN", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4360168108, + "lat": 47.9069382, + "lon": -3.8363066, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "YRHG", + "ref:EU:EVSE": "FRS29PSDE29WFUG", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4360182885, + "lat": 47.84164, + "lon": -4.2849559, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "DYVY", + "ref:EU:EVSE": "FRS29PSDE29DYVY", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4360317687, + "lat": 47.03752, + "lon": -1.1149246, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49350*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 4360488227, + "lat": 48.6329473, + "lon": -4.4115795, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "RHXL", + "ref:EU:EVSE": "FRS29PSDE29RHXL", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4360502304, + "lat": 48.1929045, + "lon": -3.8187719, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "WRFE", + "ref:EU:EVSE": "FRS29PSDE29WRFE", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4360511726, + "lat": 47.8744864, + "lon": -4.1224166, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "HMDM", + "ref:EU:EVSE": "FRS29PSDE29HMDM", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4360516491, + "lat": 47.8663105, + "lon": -4.2243347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "TQRX", + "ref:EU:EVSE": "FRS29PSDE29TQRX", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4361617646, + "lat": 47.7711822, + "lon": 7.3804531, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Nissan Illzach", + "opening_hours": "24/7", + "operator": "DBT CEV", + "ref": "43 kW", + "socket:chademo": "1" + } + }, + { + "type": "node", + "id": 4366343963, + "lat": 45.422705, + "lon": 4.4094564, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "capacity:car": "1", + "contact:website": "http://www.e-totem.fr", + "motorcar": "yes", + "network": "e-Totem", + "operator": "Saint-Étienne Métropole" + } + }, + { + "type": "node", + "id": 4366492297, + "lat": 45.4854944, + "lon": 5.2059753, + "tags": { + "amenity": "charging_station", + "recycling:cans": "yes", + "recycling:cardboard": "yes", + "recycling:paper": "yes", + "recycling:plastic_bottles": "yes", + "recycling_type": "container" + } + }, + { + "type": "node", + "id": 4367487626, + "lat": 48.6892539, + "lon": 6.1727616, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:rfid": "yes", + "capacity": "2", + "charge": "1€/1H", + "description:payment": "RFID Card", + "fee": "yes", + "level": "-1", + "location": "underground", + "official_name": "MGN_Parking St Léon", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 4373315879, + "lat": 48.6946977, + "lon": 6.2098632, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:RFID_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "1€/1H", + "description:payment": "RFID Card", + "fee": "yes", + "official_name": "MGN_Parking Stade Picot", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 4380929503, + "lat": 47.8975878, + "lon": -4.064383, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "DLJX", + "ref:EU:EVSE": "FRS29PSDE29DLJX", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4380978810, + "lat": 48.104649, + "lon": -3.9755385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "EEAN", + "ref:EU:EVSE": "FRS29PSDE29EEAN", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4381000313, + "lat": 47.9964291, + "lon": -3.8905365, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "XQAK", + "ref:EU:EVSE": "FRS29PSDE29XQAK", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4383884852, + "lat": 48.0981348, + "lon": -4.2118929, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref": "THSU", + "ref:EU:EVSE": "FRS29PSDE29THSU", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4384165171, + "lat": 48.0773972, + "lon": -4.1903778, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref": "EAGK", + "ref:EU:EVSE": "FRS29PSDE29EAGK", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4384187495, + "lat": 48.1806387, + "lon": -4.2348717, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "FJRU", + "ref:EU:EVSE": "FRS29PSDE29FJRU", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4384206385, + "lat": 48.1590016, + "lon": -4.139463, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "BVBD", + "ref:EU:EVSE": "FRS29PSDE29BVBD", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4384211990, + "lat": 47.855483, + "lon": -3.8510682, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "WTPP", + "ref:EU:EVSE": "FRS29PSDE29BAEU", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4384232791, + "lat": 47.7961219, + "lon": -4.2803182, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "YMDB", + "ref:EU:EVSE": "FRS29PSDE29YMDB", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4384390524, + "lat": 47.8565798, + "lon": -3.7526408, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "WFUG", + "ref:EU:EVSE": "FRS29PSDE29RHLF", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4384407471, + "lat": 48.2310303, + "lon": -4.3545661, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "XYSP", + "ref:EU:EVSE": "FRS29PSDE29BAAH", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4386467773, + "lat": 49.4406127, + "lon": 1.1444545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76212*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "survey:date": "2019-11-19", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4388847739, + "lat": 47.6963355, + "lon": -3.2515035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue des Roseaux", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56169*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4396488812, + "lat": 49.0923429, + "lon": 1.4888451, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "mapillary": "150919190259944", + "motorcar": "yes", + "name": "900.016", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900016", + "ref:EU:EVSE": "FR*S27*PVERNON*VELODROME", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "survey:date": "2019-05-12" + } + }, + { + "type": "node", + "id": 4396488815, + "lat": 49.0928008, + "lon": 1.4850612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "329416565201139", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900037", + "ref:EU:EVSE": "FR*S27*PVERNON*BARETTE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "survey:date": "2019-05-12" + } + }, + { + "type": "node", + "id": 4396488836, + "lat": 49.0935859, + "lon": 1.4830394, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "818170339102986", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900048", + "ref:EU:EVSE": "FR*S27*PVERNON*PHAUGUSTE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "survey:date": "2019-05-12" + } + }, + { + "type": "node", + "id": 4398014780, + "lat": 48.8268379, + "lon": 2.405254, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "network": "La borne bleue", + "operator": "Sipperec", + "source": "survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4398042332, + "lat": 49.6035729, + "lon": 0.6287586, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Yebleron", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*65*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4398044298, + "lat": 49.5850165, + "lon": 0.5280569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Trouville-Alliquerville", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*79*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4405550658, + "lat": 44.6196077, + "lon": 4.3874851, + "tags": { + "addr:street": "Place Pécourte", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07019*B", + "ref:EU:EVSE": "FR*S07*P07019*B", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4405558564, + "lat": 44.406223, + "lon": 4.397571, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07330*A", + "ref:EU:EVSE": "FR*S07*P07330*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4405653930, + "lat": 46.1175232, + "lon": 3.0893285, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PEBREUIL", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 4406170558, + "lat": 48.8367127, + "lon": 2.358966, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4406170559, + "lat": 48.8587211, + "lon": 2.3544967, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4407140014, + "lat": 47.42394, + "lon": 2.8732005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boulleret", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "LSWT", + "ref:EU:EVSE": "FRS1803201", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4407148397, + "lat": 44.2589474, + "lon": 4.6473504, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pont-Saint-Esprit", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "QGML, QCKL", + "ref:EU:EVSE": "FR*CN1*PWXPKFK", + "socket:chademo": "2", + "socket:chademo:output": "50", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4407154870, + "lat": 48.0062207, + "lon": 6.8857284, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Evtronic", + "capacity": "1", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "La Bresse - Régie Municipale d'Électricité", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "ACGF1", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "source": "https://www.freshmile.com/;survey" + } + }, + { + "type": "node", + "id": 4407163196, + "lat": 48.0175622, + "lon": 7.5275824, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "ref": "DCVC", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4407238989, + "lat": 48.8566301, + "lon": 2.2152073, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*92", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4407797732, + "lat": 48.5537978, + "lon": -4.0854629, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29EZCQM", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4412108294, + "lat": 45.7077764, + "lon": 4.5902856, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "operator": "Chez Momo", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 4414466865, + "lat": 46.9717448, + "lon": -1.4304914, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "model": "Diva SP", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44216A", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4416077826, + "lat": 48.8825191, + "lon": 2.4769961, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4416613664, + "lat": 48.8680457, + "lon": 2.350856, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4419271177, + "lat": 48.0879893, + "lon": -1.6252776, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4422023696, + "lat": 44.8031281, + "lon": 3.9707634, + "tags": { + "addr:place": "Place du 14 Juillet", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07071*A", + "ref:EU:EVSE": "FR*S07*P07071*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4422028881, + "lat": 44.8093178, + "lon": 4.1889083, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07235*A", + "ref:EU:EVSE": "FR*S07*P07235*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4423394592, + "lat": 49.3089135, + "lon": -0.905382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "MobiSdec Trévières Place du marché", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET110", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4424253549, + "lat": 44.3659314, + "lon": 2.5966046, + "tags": { + "amenity": "charging_station", + "amperage": "22", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "contact:phone": "+33 805021480", + "contact:website": "https://www.reveocharge.com/fr/chercher-et-trouver-une-borne-de-recharge/", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12176*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2016" + } + }, + { + "type": "node", + "id": 4425584285, + "lat": 48.0886738, + "lon": -1.6260464, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "level": "2", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4425624368, + "lat": 48.2825363, + "lon": 2.9691242, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77531A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4426464560, + "lat": 43.5111191, + "lon": 5.4478302, + "tags": { + "amenity": "charging_station", + "capacity:car": "12", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 4426812633, + "lat": 48.8512941, + "lon": 2.3105539, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Paris/Duquesne/26", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 4426841271, + "lat": 48.8759584, + "lon": 2.3379233, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Chateaudun/21", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX09*02", + "ref:FR:Paris:DSP": "75109-18", + "socket:type2": "3", + "socket:typee": "3", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4428072075, + "lat": 48.3279959, + "lon": -4.1608424, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "CLMR", + "ref:EU:EVSE": "FRS29PSDE29CLMR", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428078204, + "lat": 48.1649539, + "lon": -3.8855047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "LASD", + "ref:EU:EVSE": "FRS29PSDE29LASD", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428083589, + "lat": 48.4672999, + "lon": -4.5651352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "KAWJ", + "ref:EU:EVSE": "FRS29PSDE29KAWJ", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428094589, + "lat": 47.8243148, + "lon": -4.2285014, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "RUHC", + "ref:EU:EVSE": "FRS29PSDE29RHUC", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4428105189, + "lat": 48.6315885, + "lon": -3.9902523, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "AGEX", + "ref:EU:EVSE": "FRS29PSDE29AGEX", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428109152, + "lat": 48.5136915, + "lon": -4.211692, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "FCMB", + "ref:EU:EVSE": "FRS29PSDE29FCMB", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428110538, + "lat": 48.6634703, + "lon": -4.1041411, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "ABRH", + "ref:EU:EVSE": "FRS29PSDE29ABRH", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428115607, + "lat": 47.9349344, + "lon": -4.1530262, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "WAFP", + "ref:EU:EVSE": "FRS29PSDE29WAFP", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4428131674, + "lat": 48.025889, + "lon": -3.7020561, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Victor Hugo", + "network": "La borne électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "LFEG", + "ref:EU:EVSE": "FRS29PSDE29LFEG", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4428188590, + "lat": 48.1810176, + "lon": -1.9442767, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "note": "Borne Béa 3,7-22 kVA Prise E/F et prise T3 d'un côté Prise E/F et prise T2 de l'autre côté", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD35912;FR*S35*PSD35911", + "ref:FR:SDE35": "FR*S35*35023*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4428236139, + "lat": 48.1993789, + "lon": -2.0485931, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "note": "Borne Béa 3,7-22 kVA Prise E/F et prise T3 d'un côté Prise E/F et prise T2 de l'autre côté", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD355312;FR*S35*PSD355311", + "ref:FR:SDE35": "FR*S35*35184*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4428236140, + "lat": 47.9303664, + "lon": -2.1264042, + "tags": { + "amenity": "charging_station", + "note": "Borne de recharge rapide DBT tri standards AC/Chademo/Combo 1x Prise Combo UE 44kW 1x Prise CHAdeMO 44kW 1x Prise de type 2 43kW", + "source": "chargemap.com" + } + }, + { + "type": "node", + "id": 4432700552, + "lat": 49.1866553, + "lon": -0.3666358, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Rue Chanoine Xavier de Saint Pol", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET122", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 4437400768, + "lat": 46.9527599, + "lon": 3.0526851, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "1809", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4437571086, + "lat": 47.0356859, + "lon": 2.6535877, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Avord - Place de la Salle des Fêtes", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1801", + "ref:EU:EVSE": "FRS1801801", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437576202, + "lat": 47.0322153, + "lon": 2.6517481, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Avord - Parking des Alouettes", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1802", + "ref:EU:EVSE": "FRS1801802", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437578882, + "lat": 46.8009241, + "lon": 2.7134789, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Bannegon", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1803", + "ref:EU:EVSE": "FRS1802101", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437580518, + "lat": 47.0822409, + "lon": 2.7294083, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Baugy", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1804", + "ref:EU:EVSE": "FRS1802301", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437582512, + "lat": 46.8828957, + "lon": 2.5652106, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Dun sur Auron", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1805", + "ref:EU:EVSE": "FRS1808701", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437593956, + "lat": 47.0732321, + "lon": 2.6501983, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Farges-en-Septaine", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1806", + "ref:EU:EVSE": "FRS1809201", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437612069, + "lat": 46.9693839, + "lon": 2.6852206, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Raymond", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "18130", + "ref:EU:EVSE": "FRS1819101", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4437635421, + "lat": 46.8012541, + "lon": 2.3709648, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Vallenay", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "ref": "1808", + "ref:EU:EVSE": "FRS1827001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4438721609, + "lat": 43.4092331, + "lon": 3.6688259, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge pour véhicule électrique" + } + }, + { + "type": "node", + "id": 4438721986, + "lat": 43.5717857, + "lon": 3.9418752, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 4438727687, + "lat": 48.2173704, + "lon": 3.2871549, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89338*A*B1*G;FR*S89*E89338*A*B1*D", + "charging_station:ref": "FR*S89*P89338*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89338 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4438731470, + "lat": 48.2040785, + "lon": 3.2795208, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge pour véhicule électrique" + } + }, + { + "type": "node", + "id": 4439003984, + "lat": 47.5406923, + "lon": 1.032134, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4439538166, + "lat": 47.9541796, + "lon": -4.3600563, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "DSCR", + "ref:EU:EVSE": "FRS29PSDE29DSCR", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4439544064, + "lat": 48.2861742, + "lon": -4.4614624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "RHWK", + "ref:EU:EVSE": "FRS29PSDE29RHWQ", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4439550780, + "lat": 47.7955878, + "lon": -3.5866153, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref": "QVQF", + "ref:EU:EVSE": "FRS29PSDE29QVQF", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4439557338, + "lat": 47.8121703, + "lon": -3.63134, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "HJRN", + "ref:EU:EVSE": "FRS29PSDE29HJRN", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4439566975, + "lat": 48.6672819, + "lon": -3.9135257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "VPHC", + "ref:EU:EVSE": "FRS29PSDE29VPHC", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4439575568, + "lat": 48.7241529, + "lon": -3.985458, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "FDLN", + "ref:EU:EVSE": "FRS29PSDE29FDLN", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4439582817, + "lat": 48.6969203, + "lon": -3.7926861, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "MGJH", + "ref:EU:EVSE": "FRS29PSDE29MGJH", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4439601409, + "lat": 48.0810449, + "lon": -4.4147705, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "PSWJ", + "ref:EU:EVSE": "FRS29PSDE29PSWJ", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 4439612939, + "lat": 48.2478672, + "lon": -4.4191467, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "VLTA", + "ref:EU:EVSE": "FRS29PSDE29BUVG", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4439782405, + "lat": 48.4937686, + "lon": -2.716362, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4442333264, + "lat": 44.503, + "lon": 4.629389, + "tags": { + "addr:street": "Place des Crottes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07300*A", + "ref:EU:EVSE": "FR*S07*P07300*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4445483069, + "lat": 49.1816874, + "lon": -0.3466204, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Cours Caffarelli", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET130", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 4446071331, + "lat": 47.667239, + "lon": -2.1062755, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56232*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4446331212, + "lat": 48.4920978, + "lon": -2.7387783, + "tags": { + "amenity": "charging_station", + "description": "Borne de charge HAGER 7 KW située au niveau des pompes à essences", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 4446457759, + "lat": 48.8391962, + "lon": 2.3372645, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 4447665923, + "lat": 44.3714649, + "lon": 4.643799, + "tags": { + "addr:place": "Place du Champ de Mars", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07042*A", + "ref:EU:EVSE": "FR*EBN*PJHNMPLBVVS", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4447862774, + "lat": 48.5311984, + "lon": -4.451085, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "UQFA", + "ref:EU:EVSE": "FRS29PSDE29ALWH", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4450579446, + "lat": 47.8100068, + "lon": 7.3135851, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Cora Wittenheim", + "opening_hours": "24/7", + "operator": "DBT CEV", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4453342116, + "lat": 43.9787752, + "lon": 4.8894474, + "tags": { + "access": "customers", + "amenity": "charging_station", + "amenity:source": "plan du centre commercial Bld'Air : https://www.buldairshopping.com/fr-fr/store-locator", + "fixme": "continue", + "source": "plan officiel du centre commercial 10/2016 https://www.buldairshopping.com/fr-fr/store-locator" + } + }, + { + "type": "node", + "id": 4457187880, + "lat": 45.8817047, + "lon": 6.3262676, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "description": "2 cars can load at the same time.", + "fee": "unknown", + "mapillary": "1106366349869719", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "REThones", + "owner": "RET", + "survey:date": "2017-07-05", + "website": "https://www.ret.fr/" + } + }, + { + "type": "node", + "id": 4458835915, + "lat": 48.1019164, + "lon": -4.0024778, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "HFJZ", + "ref:EU:EVSE": "FRS29PSDE29HFJZ", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4458846387, + "lat": 48.49928, + "lon": -4.5076928, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "FTTP", + "ref:EU:EVSE": "FRS29PSDE29FTTP", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4459562020, + "lat": 48.894897, + "lon": 2.335519, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "name": "Paris/Championnet/162", + "network": "Autolib'", + "operator": "Autolib'", + "ref:FR:Paris:DSP": "75118-11", + "source": "Mairie de Paris - 03/2016;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4460560973, + "lat": 48.8993281, + "lon": 2.3740363, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Paris/Jacques Duchesne/1", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX19*03", + "ref:FR:Paris:DSP": "75119-25", + "socket:type2": "6", + "socket:typee": "6", + "source": "Mairie de Paris - 03/2016;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4460854973, + "lat": 47.9333675, + "lon": -3.7003195, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "RXTY", + "ref:EU:EVSE": "FRS29PSDE29RXTY", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4460858505, + "lat": 48.1944779, + "lon": -4.0934514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref": "LEKU", + "ref:EU:EVSE": "FRS29PSDE29LEKU", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4464532097, + "lat": 42.6854851, + "lon": 2.8566036, + "tags": { + "amenity": "charging_station", + "operator": "Trans.Escande" + } + }, + { + "type": "node", + "id": 4464544893, + "lat": 42.6837465, + "lon": 2.8542732, + "tags": { + "amenity": "charging_station", + "operator": "as24" + } + }, + { + "type": "node", + "id": 4464567591, + "lat": 42.6874783, + "lon": 2.8607814, + "tags": { + "amenity": "charging_station", + "operator": "Trans.Mesguen" + } + }, + { + "type": "node", + "id": 4464605291, + "lat": 42.6889101, + "lon": 2.8583058, + "tags": { + "amenity": "charging_station", + "operator": "Trans.Pronatura" + } + }, + { + "type": "node", + "id": 4464647689, + "lat": 42.6868617, + "lon": 2.8525754, + "tags": { + "amenity": "charging_station", + "operator": "Trans.Sendra" + } + }, + { + "type": "node", + "id": 4464923278, + "lat": 48.6946696, + "lon": 6.1964594, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "rfid", + "capacity": "2", + "charge": "1 € / 1 h", + "covered": "yes", + "fee": "yes", + "level": "1", + "official_name": "MGN_Parking Deux Rives", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "parking:fee": "yes", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 4466815578, + "lat": 48.842462, + "lon": 2.3131709, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Paris/Pasteur/41", + "operator": "Belib'", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4468747327, + "lat": 49.2808846, + "lon": -0.7079513, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET117", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4470529214, + "lat": 48.1275672, + "lon": 7.369082, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Cora Houssen", + "operator": "DBT CEV", + "ref": "22 kW", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4471666689, + "lat": 47.4117175, + "lon": -1.3742647, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44082A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4472979081, + "lat": 48.8804854, + "lon": 2.3285736, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Énergies", + "owner": "Total Énergies", + "ref:EU:EVSE": "FR*V75*PPX09*01", + "socket:type2": "7", + "socket:typee": "7", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4472979082, + "lat": 48.8795417, + "lon": 2.3262079, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "Total Marketing France", + "ref:EU:EVSE": "FR*V75*PPX08*15", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4472979084, + "lat": 48.8785002, + "lon": 2.3224608, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Paris/Rome/46", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4474946762, + "lat": 48.8733441, + "lon": 2.1822664, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes" + } + }, + { + "type": "node", + "id": 4480857712, + "lat": 48.5277008, + "lon": 7.4966174, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Cora Dorlisheim", + "operator": "DBT CEV", + "ref": "43 kW", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4480859484, + "lat": 48.8336873, + "lon": 7.7425684, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Auchan Schweighouse-sur-Moder", + "operator": "DBT CEV", + "ref": "43 kW", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4480861276, + "lat": 48.8021655, + "lon": 7.8361132, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Cora Haguenau", + "operator": "DBT CEV", + "ref": "43 kW", + "socket:chademo": "1", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 4484004689, + "lat": 49.2139258, + "lon": 1.1670299, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900022", + "ref:EU:EVSE": "FR*S27*PLOUVIERS*REPUBLIQUE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4485191763, + "lat": 44.6614653, + "lon": 3.0471965, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref:EU:EVSE": "FR*S48*P48104*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4485376638, + "lat": 49.211012, + "lon": 1.1707849, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900020", + "ref:EU:EVSE": "FR*S27*PLOUVIERS*OFFTOURISME", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4489884886, + "lat": 49.4356283, + "lon": 1.0868403, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*006", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4490531856, + "lat": 46.4994308, + "lon": -1.7841487, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "foI9ghBsk7ZM7NQH6OooAe", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85194*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4490572189, + "lat": 46.494038, + "lon": -1.7957355, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85194*003", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4490589927, + "lat": 46.4970901, + "lon": -1.7819273, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85194*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4492035890, + "lat": 42.689207, + "lon": 2.8569015, + "tags": { + "amenity": "charging_station", + "operator": "Berthaud" + } + }, + { + "type": "node", + "id": 4493360187, + "lat": 47.8173014, + "lon": -4.3756018, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29SPWR", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4496768295, + "lat": 44.6379631, + "lon": -0.9602473, + "tags": { + "amenity": "charging_station", + "operator": "kiwhi" + } + }, + { + "type": "node", + "id": 4496852236, + "lat": 43.7004537, + "lon": 7.2869804, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Nice - Max Barel", + "operator": "Auto Bleue" + } + }, + { + "type": "node", + "id": 4501283900, + "lat": 47.731427, + "lon": 7.2826549, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Ikea Mulhouse (Morschwiller-le-Bas)", + "ref": "Prises Domestiques", + "socket:schuko": "1" + } + }, + { + "type": "node", + "id": 4501283901, + "lat": 47.7314573, + "lon": 7.2826509, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Ikea Mulhouse (Morschwiller-le-Bas)", + "ref": "Prises Domestiques", + "socket:schuko": "1" + } + }, + { + "type": "node", + "id": 4501283902, + "lat": 47.7314314, + "lon": 7.2826719, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Ikea Mulhouse (Morschwiller-le-Bas)", + "ref": "Prises Domestiques", + "socket:schuko": "1" + } + }, + { + "type": "node", + "id": 4501283903, + "lat": 47.7314542, + "lon": 7.282639, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Ikea Mulhouse (Morschwiller-le-Bas)", + "ref": "Prises Domestiques", + "socket:schuko": "1" + } + }, + { + "type": "node", + "id": 4501283904, + "lat": 47.7314585, + "lon": 7.2826612, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "name": "Ikea Mulhouse (Morschwiller-le-Bas)", + "operator": "DBT CEV", + "ref": "43kW", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4503091596, + "lat": 46.4409391, + "lon": 1.5836495, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Chargelec36" + } + }, + { + "type": "node", + "id": 4510312299, + "lat": 42.68364, + "lon": 2.8431581, + "tags": { + "amenity": "charging_station", + "operator": "Socafna 1" + } + }, + { + "type": "node", + "id": 4510331489, + "lat": 42.6820824, + "lon": 2.8450599, + "tags": { + "amenity": "charging_station", + "operator": "Top fruits 1" + } + }, + { + "type": "node", + "id": 4510433889, + "lat": 42.6800267, + "lon": 2.8507307, + "tags": { + "amenity": "charging_station", + "operator": "Lacour s.a.s" + } + }, + { + "type": "node", + "id": 4510478093, + "lat": 42.6824358, + "lon": 2.8499103, + "tags": { + "amenity": "charging_station", + "operator": "Kolla France" + } + }, + { + "type": "node", + "id": 4510502692, + "lat": 42.6863163, + "lon": 2.8604926, + "tags": { + "amenity": "charging_station", + "operator": "Blancher" + } + }, + { + "type": "node", + "id": 4510545789, + "lat": 42.6838918, + "lon": 2.8465439, + "tags": { + "amenity": "charging_station", + "operator": "Primsud" + } + }, + { + "type": "node", + "id": 4510559591, + "lat": 42.6931057, + "lon": 2.8609267, + "tags": { + "amenity": "charging_station", + "operator": "FrigoExpress" + } + }, + { + "type": "node", + "id": 4510628989, + "lat": 42.6931135, + "lon": 2.8605711, + "tags": { + "amenity": "charging_station", + "operator": "Socave Europe" + } + }, + { + "type": "node", + "id": 4511082834, + "lat": 48.8722517, + "lon": 2.3386966, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Paris/Haussmann/6", + "network": "Belib'" + } + }, + { + "type": "node", + "id": 4511082836, + "lat": 48.8660807, + "lon": 2.3433997, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "name": "Paris/Louvre/31", + "network": "Autolib'", + "operator": "Autolib'", + "ref:FR:Paris:DSP": "75102-16", + "source": "Mairie de Paris - 03/2016;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4521216931, + "lat": 48.8305198, + "lon": 2.2960051, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "network": "Belib'", + "operator": "belib", + "socket:type2": "5", + "socket:type2:output": "7 kW", + "socket:typee": "5", + "website": "https://belib.paris/" + } + }, + { + "type": "node", + "id": 4524176897, + "lat": 47.9199408, + "lon": -1.860466, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD353311;FR*S35*PSD353312", + "ref:FR:SDE35": "FR*S35*35127*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4525128934, + "lat": 48.8701622, + "lon": 2.3501152, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX02*04", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4528268790, + "lat": 42.6891799, + "lon": 2.8491056, + "tags": { + "amenity": "charging_station", + "operator": "Bio bio" + } + }, + { + "type": "node", + "id": 4528410991, + "lat": 42.6835383, + "lon": 2.8503213, + "tags": { + "amenity": "charging_station", + "operator": "Pomona" + } + }, + { + "type": "node", + "id": 4528484890, + "lat": 42.6883316, + "lon": 2.8494485, + "tags": { + "amenity": "charging_station", + "operator": "Logistri bio" + } + }, + { + "type": "node", + "id": 4533865591, + "lat": 42.6907176, + "lon": 2.8468788, + "tags": { + "amenity": "charging_station", + "operator": "Richard Pol" + } + }, + { + "type": "node", + "id": 4533952591, + "lat": 42.6921961, + "lon": 2.8602774, + "tags": { + "amenity": "charging_station", + "operator": "Imago" + } + }, + { + "type": "node", + "id": 4534006192, + "lat": 42.6793742, + "lon": 2.8414547, + "tags": { + "amenity": "charging_station", + "operator": "Alma" + } + }, + { + "type": "node", + "id": 4535412391, + "lat": 44.711028, + "lon": 4.207861, + "tags": { + "addr:place": "Place de la Poste", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07161*A", + "ref:EU:EVSE": "FR*S07*P07161*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4535422528, + "lat": 44.6751381, + "lon": 4.2214575, + "tags": { + "addr:street": "Place du Champs de Mars", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07322*A", + "ref:EU:EVSE": "FR*S07*P07322*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4535446197, + "lat": 44.66581, + "lon": 4.3657435, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07331*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4535455387, + "lat": 44.482199, + "lon": 4.255207, + "tags": { + "addr:place": "Place du Village", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07199*A", + "ref:EU:EVSE": "FR*S07*P07199*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4543206834, + "lat": 47.2827707, + "lon": -1.5500076, + "tags": { + "access": "customers", + "addr:city": "La Chapelle-sur-Erdre", + "addr:country": "FR", + "addr:housenumber": "34", + "addr:postcode": "44240", + "addr:street": "Rue de la Vrière", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Nantes - La Chapelle-sur-Erdre Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/nanteslachapellesurerdresupercharger" + } + }, + { + "type": "node", + "id": 4545480008, + "lat": 44.5435887, + "lon": -0.2528011, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "4 x prise domestique : 3 Kw 2 x prise Type 2 : 3 - 22 Kw 2 x prise evplug : 3 - 22 Kw", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 4545480009, + "lat": 44.5552645, + "lon": -0.2481287, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "2 x prise domestique @ 3 Kw : 2 x prise Type 2 @ 3 - 22 Kw", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33227*002", + "ref:EU:EVSE": "FR*S33*PMB33*64", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://www.sdeeg33.fr/" + } + }, + { + "type": "node", + "id": 4547921270, + "lat": 47.5729716, + "lon": 1.3738148, + "tags": { + "amenity": "charging_station", + "brand": "DBT", + "capacity": "2", + "operator": "Auchan", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4547937042, + "lat": 47.6038409, + "lon": 1.3295359, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "opening_hours": "Mo-Sa 08:30-19:00", + "operator": "Nissan", + "operator:wikidata": "Q20165", + "operator:wikipedia": "en:Nissan", + "socket:type3c": "1" + } + }, + { + "type": "node", + "id": 4547995554, + "lat": 47.6089262, + "lon": 1.3103704, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "opening_hours": "Mo-Sa 08:30-12:00, 14:00-18:30", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "socket:type3c": "3" + } + }, + { + "type": "node", + "id": 4547995555, + "lat": 47.614915, + "lon": 1.3249577, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "Mo-Sa 09:00-20:00", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 4547995560, + "lat": 47.6153135, + "lon": 1.3214998, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "E-Totem", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4549550753, + "lat": 48.8517938, + "lon": 2.2998427, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR*V75*PPX15*29", + "socket:typee": "5", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2022-05;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4549867980, + "lat": 44.5531276, + "lon": -0.2451787, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "2 x prise domestique @ 3 Kw : 2 x prise Type 2 @ 3 - 22 Kw", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33227*003", + "ref:EU:EVSE": "FR*S33*PMB33*63", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://www.sdeeg33.fr/" + } + }, + { + "type": "node", + "id": 4550418593, + "lat": 48.6065321, + "lon": -3.46696, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station": "1", + "operator": "Ouest Charge" + } + }, + { + "type": "node", + "id": 4551966461, + "lat": 47.9637481, + "lon": 3.5096637, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89257*A*B1*G", + "charging_station:ref": "FR*S89*P89257*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50.00", + "ref:EU:EVSE": "FR*S89*P89257*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4552037001, + "lat": 47.698993, + "lon": 2.9467401, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89046*A*B1*G;FR*S89*E89046*A*B1*D", + "charging_station:ref": "FR*S89*P89046*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89046 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4553448325, + "lat": 47.6413592, + "lon": 3.0711673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89344*A*B1*D;FR*S89*E89344*A*B1*G", + "charging_station:ref": "FR*S89*P89344*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89344*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4555636680, + "lat": 48.1387833, + "lon": 3.1360503, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89459*A*B1*G", + "fee": "yes", + "motorcar": "yes", + "name": "VILLENEUVE LA DONDAGRE_Rue des Vignes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50", + "ref:EU:EVSE": "FR*S89*P89459*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4555675538, + "lat": 47.9800324, + "lon": 0.1749261, + "tags": { + "amenity": "charging_station", + "operator": "renault" + } + }, + { + "type": "node", + "id": 4556721319, + "lat": 47.8063631, + "lon": 3.6369401, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89438*A*B1*G", + "charging_station:ref": "FR*S89*P89438*A", + "fee": "yes", + "fixme": "localisation à revoir !", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50", + "ref:EU:EVSE": "FR*S89*P89438*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4556794268, + "lat": 48.1136415, + "lon": 3.066672, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89144*A*B1*G;FR*S89*E89144*A*B1*D", + "charging_station:ref": "FR*S89*P89144*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89144 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4556871878, + "lat": 47.9414163, + "lon": 3.4916087, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89085*A*B1*D;FR*S89*E89085*A*B1*G", + "charging_station:ref": "FR*S89*P89085*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89085*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4557558581, + "lat": 48.8413789, + "lon": 2.2982639, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Belib'", + "source": "survey" + } + }, + { + "type": "node", + "id": 4558442195, + "lat": 42.6856406, + "lon": 2.8579807, + "tags": { + "amenity": "charging_station", + "operator": "Anecoop France" + } + }, + { + "type": "node", + "id": 4558588667, + "lat": 43.768305, + "lon": 1.2945083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "les qr codes indiquent un paiement possible via internet aux adresses https://charge.freshmile.com/charge/CTWM1 https://charge.freshmile.com/charge/CTWM2", + "fee": "yes", + "fee:price": "0.20 € pendant 20 minutes, puis 0.75 € par demi-heure", + "operator": "freshmile", + "payment:paypal": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "website": "https://charge.freshmile.com/charge/CTWM1" + } + }, + { + "type": "node", + "id": 4558682972, + "lat": 48.8868484, + "lon": 2.3121583, + "tags": { + "amenity": "charging_station", + "brand:wikidata": "Q787037", + "brand:wikipedia": "fr:Autolib' (Paris)", + "capacity": "4", + "disused:amenity": "car_sharing", + "name": "Paris/Jouffroy d'Abbans/14", + "network": "Autolib'", + "operator": "Autolib'", + "ref:FR:Paris:DSP": "75117-09", + "source": "Mairie de Paris - 03/2016;survey", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 4558682973, + "lat": 48.8830394, + "lon": 2.3125583, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "ubeeqo" + } + }, + { + "type": "node", + "id": 4558689046, + "lat": 48.8807386, + "lon": 2.3212609, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Belib", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9008*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "survey" + } + }, + { + "type": "node", + "id": 4560324936, + "lat": 48.8896956, + "lon": 2.3389491, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Belib", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9018*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "survey" + } + }, + { + "type": "node", + "id": 4562063701, + "lat": 49.9092129, + "lon": 1.106382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4562071756, + "lat": 47.4784076, + "lon": -0.6120643, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4565592505, + "lat": 45.6312505, + "lon": 4.8190007, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 4569191469, + "lat": 48.8375137, + "lon": 2.30583, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Paris/Paul Barruel/44", + "network": "Belib'", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 4572017537, + "lat": 48.7298026, + "lon": 4.2293834, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Sommesous", + "network": "Corri-dor", + "note": "A26", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "parking:fee": "no", + "ref:EU:EVSE": "FR*E04*P*OAZS*146*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 4573272620, + "lat": 48.0669573, + "lon": -3.2070805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue du Condé", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56073*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 4573324391, + "lat": 43.3609978, + "lon": 3.3440609, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Béziers-Montblanc Nord", + "network": "Corri-dor", + "note": "A9", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*48*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 4579122841, + "lat": 48.8647713, + "lon": 2.3590356, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Belib", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9003*01", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "survey" + } + }, + { + "type": "node", + "id": 4581800361, + "lat": 43.7569775, + "lon": 1.3041602, + "tags": { + "amenity": "charging_station", + "description": "station de recharge du garage Renault, sert pour la Zoé de démo, apparemment une station de recharge rapide" + } + }, + { + "type": "node", + "id": 4589705033, + "lat": 42.9892349, + "lon": 1.1388406, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 4601177158, + "lat": 48.2864839, + "lon": 3.5484575, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89122*A*B1*D;FR*S89*E89122*A*B1*G", + "fee": "yes", + "fixme": "Tag power=22.00", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89122*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4601199382, + "lat": 48.2339607, + "lon": 3.5574433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89461*A*B1*D;FR*S89*E89461*A*B1*G", + "charging_station:ref": "FR*S89*P89461*A", + "fee": "yes", + "fixme": "Tag power=22.00", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89461*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4607634925, + "lat": 46.4357441, + "lon": 0.5977933, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "parking:fee": "no", + "ref": "B053", + "ref:EU:EVSE": "FR*S86*PSORE*B053", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4608877936, + "lat": 43.4114504, + "lon": 5.2096541, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 4610417917, + "lat": 47.7426718, + "lon": -3.3874531, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56121*I", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4610417918, + "lat": 47.7666609, + "lon": -3.4019394, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56121*B", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4610417919, + "lat": 47.7023198, + "lon": -3.4325828, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56162*A", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4610417920, + "lat": 47.7487982, + "lon": -3.3657743, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*A", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4612387020, + "lat": 48.476387, + "lon": -0.3797422, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4616432197, + "lat": 47.6557208, + "lon": -2.8693413, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue des Deux Moulins", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56164*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4616586339, + "lat": 46.2559942, + "lon": 6.1074903, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "operator": "Schneider Electric", + "parking:fee": "no", + "scooter": "no" + } + }, + { + "type": "node", + "id": 4616845104, + "lat": 47.7518347, + "lon": -3.3648885, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*G", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4616845114, + "lat": 47.7353929, + "lon": -3.3659763, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*E", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4618653851, + "lat": 50.7231207, + "lon": 1.6021394, + "tags": { + "addr:city": "Boulogne-sur-Mer", + "addr:postcode": "62200", + "addr:street": "Rue du Pont de Service", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H05*P62160008", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 4618653852, + "lat": 50.7231156, + "lon": 1.6071906, + "tags": { + "addr:city": "Boulogne-sur-Mer", + "addr:street": "Place Dalton", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62160*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4618653853, + "lat": 50.7646782, + "lon": 1.6142339, + "tags": { + "addr:city": "Wimereux", + "addr:street": "Rue de la Gare", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62894*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4618653854, + "lat": 50.7152308, + "lon": 1.6037922, + "tags": { + "addr:city": "Boulogne-sur-Mer", + "addr:street": "Boulevard Chanzy", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62160*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4618653855, + "lat": 50.7082109, + "lon": 1.592779, + "tags": { + "addr:city": "Outreau", + "addr:housenumber": "55", + "addr:postcode": "62230", + "addr:street": "Rue du Biez", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4618653886, + "lat": 50.6506618, + "lon": 1.6255348, + "tags": { + "addr:city": "Condette", + "addr:street": "Place du Choquel", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62235*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4618937406, + "lat": 47.7498331, + "lon": -3.3611466, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*C", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4618937407, + "lat": 47.749018, + "lon": -3.360021, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*D", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4618937408, + "lat": 47.7317229, + "lon": -3.3733993, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*J", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4618937413, + "lat": 47.7039162, + "lon": -3.3846246, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56107*A", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 4629425164, + "lat": 48.4183476, + "lon": -1.754257, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "SDE35 - Combourg", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD352112;FR*S35*PSD352111", + "ref:FR:SDE35": "FR*S35*35085*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4643521089, + "lat": 49.1442963, + "lon": -0.3210344, + "tags": { + "amenity": "charging_station", + "operator": "U Logistique" + } + }, + { + "type": "node", + "id": 4644138459, + "lat": 48.517178, + "lon": 7.7005583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Volkswagen Strasbourg Sud" + } + }, + { + "type": "node", + "id": 4645055691, + "lat": 49.6622604, + "lon": -1.31133, + "tags": { + "amenity": "charging_station", + "operator": "Gosselin" + } + }, + { + "type": "node", + "id": 4647099789, + "lat": 43.6552517, + "lon": 3.9577761, + "tags": { + "amenity": "charging_station", + "operator": "Vendargues (Marche des fruits nagel" + } + }, + { + "type": "node", + "id": 4653305107, + "lat": 48.4823774, + "lon": -4.2893389, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29TGMV", + "socket:chademo": "1", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4655207790, + "lat": 48.7561776, + "lon": 2.356477, + "tags": { + "amenity": "charging_station", + "operator": "Roca (Rungis)" + } + }, + { + "type": "node", + "id": 4655281089, + "lat": 48.7570988, + "lon": 2.3580141, + "tags": { + "amenity": "charging_station", + "operator": "BurBank (bat d 7)Rungis" + } + }, + { + "type": "node", + "id": 4660071107, + "lat": 48.5620073, + "lon": -4.335351, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29NBDS", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4662926789, + "lat": 43.8235611, + "lon": 5.0228607, + "tags": { + "amenity": "charging_station", + "operator": "Transcosatal (plan d'orgon)" + } + }, + { + "type": "node", + "id": 4668703389, + "lat": 43.8142985, + "lon": 5.0456531, + "tags": { + "amenity": "charging_station", + "operator": "Chabas (Cavallion)" + } + }, + { + "type": "node", + "id": 4672178730, + "lat": 48.1443315, + "lon": -1.8959165, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "note": "Borne Béa 3,7-18 kVA Prise E/F et prise T3 d'un côté Prise E/F et prise T2 de l'autre côté (35040-001-1 et 35040-002)", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD351312;FR*S35*PSD351311", + "ref:FR:SDE35": "FR*S35*35040*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 4672189861, + "lat": 48.138465, + "lon": -1.9500572, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "note": "Borne Béa 3,7-18 kVA Prise E/F et prise T3 d'un côté Prise E/F et prise T2 de l'autre côté 35188-001-1 35188-001-2", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD355411;FR*S35*PSD355412", + "ref:FR:SDE35": "FR*S35*35188*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4674562789, + "lat": 43.7515123, + "lon": 3.1135268, + "tags": { + "amenity": "charging_station", + "operator": "Avene (Fábrica de Cosmetique)" + } + }, + { + "type": "node", + "id": 4675095791, + "lat": 42.6812121, + "lon": 2.8408142, + "tags": { + "amenity": "charging_station", + "operator": "Philippe Rey (Perpignan)" + } + }, + { + "type": "node", + "id": 4675678492, + "lat": 48.0434445, + "lon": -2.4038978, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Glaharon", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56080*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4676911489, + "lat": 42.6869433, + "lon": 2.8474249, + "tags": { + "amenity": "charging_station", + "operator": "Satar" + } + }, + { + "type": "node", + "id": 4677455595, + "lat": 43.7722558, + "lon": -0.5849152, + "tags": { + "amenity": "charging_station", + "operator": "Scalande(Saint Sever)" + } + }, + { + "type": "node", + "id": 4679928746, + "lat": 44.861551, + "lon": 4.941067, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26037*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4683372491, + "lat": 49.0636673, + "lon": 2.5927352, + "tags": { + "amenity": "charging_station", + "operator": "CSP (farmacia)" + } + }, + { + "type": "node", + "id": 4683878336, + "lat": 48.5620566, + "lon": -4.3121797, + "tags": { + "addr:street": "2-4 Rue de Croas ar Road", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 4684538790, + "lat": 43.4648852, + "lon": 5.6186325, + "tags": { + "amenity": "charging_station", + "operator": "peyniel" + } + }, + { + "type": "node", + "id": 4685220602, + "lat": 43.2095628, + "lon": 2.3103856, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 4685261560, + "lat": 43.1746433, + "lon": 2.9908108, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "24/7", + "scooter": "yes", + "socket:schuko": "1", + "socket:type3c": "1", + "socket:typee": "1", + "voltage": "230" + } + }, + { + "type": "node", + "id": 4687251770, + "lat": 48.6585049, + "lon": -4.1754259, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29HZEX", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4688915629, + "lat": 47.6738329, + "lon": 6.5102079, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "operator": "Lidl", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2017" + } + }, + { + "type": "node", + "id": 4688915630, + "lat": 47.673907, + "lon": 6.5107349, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "operator": "Lidl", + "source": "cadastre-dgi-fr source : Direction Générale des Impôts - Cadastre. Mise à jour : 2017" + } + }, + { + "type": "node", + "id": 4689590125, + "lat": 46.6845602, + "lon": 0.2534838, + "tags": { + "amenity": "charging_station", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 4694060408, + "lat": 47.5539508, + "lon": -1.5319104, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44001A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4695440089, + "lat": 48.7417204, + "lon": 7.3631355, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Ville de Saverne", + "ref:EU:EVSE": "FR*V13*P67437*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4700867752, + "lat": 46.8409744, + "lon": 0.0917839, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "service-recharge@soregies.fr", + "fee": "yes", + "motorcar": "yes", + "name": "B084", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B084", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4702171380, + "lat": 49.4850486, + "lon": 0.8064458, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Amiral Ronarch", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76709*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4703975730, + "lat": 44.6262717, + "lon": 4.3973081, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07325*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4707416989, + "lat": 48.5686331, + "lon": 2.6340144, + "tags": { + "amenity": "charging_station", + "operator": "Mag-prim (vert st denis)" + } + }, + { + "type": "node", + "id": 4708036241, + "lat": 47.7380318, + "lon": 3.5990202, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89077*A*B1*D;FR*S89*E89077*A*B1*G", + "charging_station:ref": "FR*S89*P89077*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22", + "ref:EU:EVSE": "FR*S89*P89077*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4712308236, + "lat": 48.5519509, + "lon": -3.8789768, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29GYVR", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4714048398, + "lat": 45.3932204, + "lon": 5.1658546, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "FARAMANS_Parking Place Rue Centrale", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38161*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 4714314859, + "lat": 46.2276575, + "lon": 5.9939882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Charging station - Val Thoiry" + } + }, + { + "type": "node", + "id": 4714317186, + "lat": 46.1830753, + "lon": 5.928416, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Charging Station - Intermarché Peron", + "operator": "Intermarché" + } + }, + { + "type": "node", + "id": 4716329944, + "lat": 47.6309739, + "lon": -2.1013891, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Borne recharge de couleur jaune", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge électrique", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56194*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4717002302, + "lat": 44.6180671, + "lon": -0.9195186, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4717431571, + "lat": 46.4022401, + "lon": 0.7251875, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref": "B060", + "ref:EU:EVSE": "FR*S86*PSORE*B060", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4721834906, + "lat": 47.8431105, + "lon": -3.6912517, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29GYWY", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4724396985, + "lat": 49.1866312, + "lon": -0.3812353, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "description": "Carte de fidélité E.Leclerc à scanner sur la borne.", + "fee": "no", + "manufacturer": "Lafon", + "model": "Pulse 22 GL", + "motorcar": "yes", + "name": "La borne E. Leclerc", + "opening_hours": "Mo-Su 09:00-21:00Mo-Sa 08:30-20:00", + "operator": "E.Leclerc", + "scooter": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type3c": "2", + "socket:type3c:output": "22 kW", + "socket:typee": "4", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 4724555494, + "lat": 44.357527, + "lon": -0.7045906, + "tags": { + "amenity": "charging_station", + "operator": "Montauzey" + } + }, + { + "type": "node", + "id": 4725996491, + "lat": 48.6894621, + "lon": 6.0144313, + "tags": { + "amenity": "charging_station", + "operator": "Viapost" + } + }, + { + "type": "node", + "id": 4727590692, + "lat": 48.0884079, + "lon": -1.7849791, + "tags": { + "amenity": "charging_station", + "operator": "Le Rheu (la poste) parking" + } + }, + { + "type": "node", + "id": 4732338572, + "lat": 45.1878065, + "lon": 4.7997225, + "tags": { + "addr:street": "Place Jean Moulin", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07308*A", + "ref:EU:EVSE": "FR*S07*P07308*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4732338573, + "lat": 44.7511887, + "lon": 5.3728698, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26113*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4736289411, + "lat": 47.0061527, + "lon": 0.0861351, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B057", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B057", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4736302822, + "lat": 48.7222611, + "lon": 2.4073981, + "tags": { + "amenity": "charging_station", + "operator": "Athis mons (Stef)" + } + }, + { + "type": "node", + "id": 4737888170, + "lat": 45.0576045, + "lon": 5.0999361, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "E. Leclerc", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 4738648221, + "lat": 48.2828606, + "lon": 4.0942478, + "tags": { + "amenity": "charging_station", + "operator": "stralog" + } + }, + { + "type": "node", + "id": 4739889378, + "lat": 47.7359488, + "lon": -3.2329846, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Morbihan Énergies" + } + }, + { + "type": "node", + "id": 4739889381, + "lat": 47.7775859, + "lon": -3.0092507, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Place Saint Michel", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56177*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4740708797, + "lat": 44.4539997, + "lon": 4.3424398, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07201*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4743582522, + "lat": 47.3039894, + "lon": -0.0238305, + "tags": { + "amenity": "charging_station", + "operator": "ts (Allones)" + } + }, + { + "type": "node", + "id": 4745183485, + "lat": 44.4952341, + "lon": 6.5574378, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "mapillary": "547413366245429", + "motorcar": "yes", + "name": "Parking Horizon", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05098*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2017", + "survey:date": "2017-03-20" + } + }, + { + "type": "node", + "id": 4746285632, + "lat": 49.0615342, + "lon": 2.1422059, + "tags": { + "amenity": "charging_station", + "operator": "Saint ouen l'aumône (id logistics)" + } + }, + { + "type": "node", + "id": 4747209623, + "lat": 48.9657792, + "lon": 2.863951, + "tags": { + "amenity": "charging_station", + "operator": "Lidl meaux (Crégy-lès-Meaux)" + } + }, + { + "type": "node", + "id": 4747791826, + "lat": 50.2772407, + "lon": 3.9064161, + "tags": { + "amenity": "charging_station", + "operator": "MenisseZ (Feignies)" + } + }, + { + "type": "node", + "id": 4748641878, + "lat": 50.627535, + "lon": 3.0654119, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4749879521, + "lat": 50.2608738, + "lon": 2.8593247, + "tags": { + "amenity": "charging_station", + "operator": "Socafna, Dispam (Wancourt)" + } + }, + { + "type": "node", + "id": 4749879522, + "lat": 43.9720213, + "lon": 4.8612732, + "tags": { + "amenity": "charging_station", + "operator": "Dispam (Le Pontet)" + } + }, + { + "type": "node", + "id": 4752127066, + "lat": 48.7689133, + "lon": 2.3475881, + "tags": { + "amenity": "charging_station", + "operator": "France Food (Rungis)" + } + }, + { + "type": "node", + "id": 4759620225, + "lat": 49.0241753, + "lon": 2.1223672, + "tags": { + "amenity": "charging_station", + "operator": "Kyb (Éragny sur oise)" + } + }, + { + "type": "node", + "id": 4764070259, + "lat": 47.0768962, + "lon": -1.2483863, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44063A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4765161190, + "lat": 48.056541, + "lon": 4.9609161, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Châteauvillain-Est", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*169*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 4767045095, + "lat": 48.1597005, + "lon": 3.2610923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89195*A*B1*G;FR*S89*E89195*A*B1*D", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89195 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4767064846, + "lat": 48.324061, + "lon": 3.0822271, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_point:ref": "FR*S89*E89449*A*B1*G", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "ref:EU:EVSE": "FR S89 P89449 A", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 4769002524, + "lat": 43.7609298, + "lon": -1.0607528, + "tags": { + "amenity": "charging_station", + "operator:type": "private" + } + }, + { + "type": "node", + "id": 4770124505, + "lat": 48.0712248, + "lon": -1.3932044, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35096*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4772378414, + "lat": 47.1674333, + "lon": 0.6304045, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "no", + "authentication:none": "no", + "authentication:phone_call": "no", + "authentication:short_message": "no", + "bicycle": "no", + "capacity": "1", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Sodetrel", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 4773302868, + "lat": 44.7643984, + "lon": -0.8548572, + "tags": { + "amenity": "charging_station", + "operator": "L'Ombrière (Saint Jean d'illac)" + } + }, + { + "type": "node", + "id": 4774094939, + "lat": 43.6258779, + "lon": 4.0020892, + "tags": { + "amenity": "charging_station", + "operator": "La Rosée (Mauguio)" + } + }, + { + "type": "node", + "id": 4778011021, + "lat": 43.612372, + "lon": -1.4027995, + "tags": { + "amenity": "charging_station", + "description": "TYPE 2 (Rapide 43KW 400V AC-TRI 63A), CHADEMO (Rapide 50KW 400V DC 125A), COMBO CCS EU (Rapide 50KW 400V DC 125A), DOMESTIQUE UE.", + "motorcar": "yes", + "operator": "IFCO Labenne (cajas basillas)" + } + }, + { + "type": "node", + "id": 4778011022, + "lat": 43.8302343, + "lon": 5.059106, + "tags": { + "amenity": "charging_station", + "operator": "IFCO (cajas basillas Cavallion)" + } + }, + { + "type": "node", + "id": 4781221339, + "lat": 48.8913039, + "lon": 2.7935352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Place de la Forge", + "operator": "Mairie de Coupvray" + } + }, + { + "type": "node", + "id": 4786957689, + "lat": 48.3028227, + "lon": -3.955978, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29TGNL", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4788381712, + "lat": 44.5674526, + "lon": -0.4149176, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "2 x prise domestique @ 3 Kw : 2 x prise Type 2 @ 3 - 22 Kw", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33225*001", + "ref:EU:EVSE": "FR*S33*PMB33*61", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4788698922, + "lat": 44.2857766, + "lon": -1.1112557, + "tags": { + "amenity": "charging_station", + "operator": "Tom d'aqui pontenx (Parentis en Born)" + } + }, + { + "type": "node", + "id": 4790213776, + "lat": 44.553567, + "lon": -0.2489211, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "2 x prise domestique @ 3 Kw : 2 x prise Type 2 @ 3 - 22 Kw", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33227*001", + "ref:EU:EVSE": "FR*S33*PMB33*65", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://www.sdeeg33.fr/" + } + }, + { + "type": "node", + "id": 4791582764, + "lat": 47.1327414, + "lon": 1.0113372, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1561;FR*S37*E1562", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 4792422122, + "lat": 44.1097731, + "lon": 1.1126681, + "tags": { + "amenity": "charging_station", + "operator": "Satar(Moissac)" + } + }, + { + "type": "node", + "id": 4794929388, + "lat": 44.109384, + "lon": 1.1020271, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 4804063621, + "lat": 43.5512394, + "lon": -0.9952406, + "tags": { + "amenity": "charging_station", + "operator": "parking (Labatut)" + } + }, + { + "type": "node", + "id": 4809845117, + "lat": 47.1140697, + "lon": -1.9374551, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44005B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4815478851, + "lat": 45.3594175, + "lon": 1.937533, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "mapillary": "949927265839886", + "operator": "shell", + "survey:date": "2018-10-06" + } + }, + { + "type": "node", + "id": 4816434295, + "lat": 48.2708843, + "lon": 1.8559206, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Sodetrel", + "operator": "Sodetrel", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 4818355721, + "lat": 44.2993032, + "lon": 0.2732737, + "tags": { + "amenity": "charging_station", + "operator": "S.A.P.A." + } + }, + { + "type": "node", + "id": 4819722521, + "lat": 43.8852489, + "lon": 4.9856657, + "tags": { + "amenity": "charging_station", + "operator": "Coccolo (Cavaillon)" + } + }, + { + "type": "node", + "id": 4823386684, + "lat": 47.8710975, + "lon": -3.5528391, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Gare", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29MCJA", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4824662721, + "lat": 47.5867263, + "lon": -3.0003941, + "tags": { + "amenity": "charging_station", + "amperage": "64", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place de la Mairie", + "name:br": "Plasenn an Ti-kêr", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref": "FR-ETO1-0199 ePremium 25/2016", + "ref:EU:EVSE": "FR*S56*P56233*A", + "socket:type2": "2", + "socket:typee": "2", + "source:name:br": "proper translation", + "voltage": "400" + } + }, + { + "type": "node", + "id": 4827389890, + "lat": 44.7170452, + "lon": 5.0569564, + "tags": { + "addr:housenumber": "8", + "addr:postcode": "26400", + "addr:street": "Via Augusta", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "CPO Réseau EBORN", + "network": "E Born", + "opening_hours": "24/7", + "operator": "eborn", + "owner": "SDED", + "phone": "+33 4 23 10 03 50", + "ref:EU:EVSE": "FR*S26*P26011*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://moncompte.reseau-eborn.fr/location/KVCB2FBNZ3" + } + }, + { + "type": "node", + "id": 4828341751, + "lat": 49.0830268, + "lon": 6.6975873, + "tags": { + "amenity": "charging_station", + "source": "http://www.freshmile.com" + } + }, + { + "type": "node", + "id": 4838256042, + "lat": 46.9892017, + "lon": 3.156248, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Parc Salengro", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58194*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4842277821, + "lat": 48.0321525, + "lon": -3.4993886, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "no", + "authentication:none": "no", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Cours Carré", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S56*P56057*A", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://morbihan-energies.fr/VE1/" + } + }, + { + "type": "node", + "id": 4842678121, + "lat": 50.9350325, + "lon": 1.8132229, + "tags": { + "addr:city": "Coquelles", + "addr:postcode": "62231", + "addr:street": "Boulevard de l'Europe", + "amenity": "charging_station", + "description": "2 DBT charging station, available to Eurotunnel passengers travelling from France to the UK only. Free terminal and free access.", + "name": "EV chargers - Eurotunnel Terminal Supercharger", + "note": "2 bornes DBT, accessibles uniquement pour les clients Eurotunnel voyageant depuis la France vers l'Angleterre. Borne gratuite et libre d'accès.", + "operator": "DBT", + "type_charge": "rapide" + } + }, + { + "type": "node", + "id": 4845181421, + "lat": 43.6663771, + "lon": 3.9665248, + "tags": { + "amenity": "charging_station", + "operator": "Sisteme U (Legumes)frigo" + } + }, + { + "type": "node", + "id": 4847379698, + "lat": 43.4944596, + "lon": -1.2925081, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*123", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4847379699, + "lat": 43.4629028, + "lon": -1.5423925, + "tags": { + "amenity": "charging_station", + "operator": "SIPLEC E.LECLERC Biarritz" + } + }, + { + "type": "node", + "id": 4847379701, + "lat": 43.4684982, + "lon": -1.5412776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 4847385239, + "lat": 43.1650403, + "lon": -1.2322175, + "tags": { + "amenity": "charging_station", + "operator": "Syndicat d’énergie des Pyrénées-Atlantiques" + } + }, + { + "type": "node", + "id": 4852418591, + "lat": 47.1443262, + "lon": 0.5385721, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1565;FR*S37*E1566", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 4855613825, + "lat": 48.7945036, + "lon": -3.4132316, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "brev'car" + } + }, + { + "type": "node", + "id": 4856047018, + "lat": 43.1653926, + "lon": -1.2335453, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*108", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4857717458, + "lat": 48.7539545, + "lon": 2.9076796, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77144A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4861130522, + "lat": 43.3539404, + "lon": 3.1273151, + "tags": { + "amenity": "charging_station", + "operator": "Lidl Beziers" + } + }, + { + "type": "node", + "id": 4866630975, + "lat": 46.1698417, + "lon": 6.3159016, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "manufacturer": "Scame", + "motorcar": "yes", + "network": "Super U", + "operator": "Super U", + "socket:type3c": "3", + "socket:type3c:output": "11 kW" + } + }, + { + "type": "node", + "id": 4866724887, + "lat": 48.8995657, + "lon": 2.309117, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "name": "Clichy-la-garenne/Martre", + "network": "Sigeif", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 4868279492, + "lat": 48.5522111, + "lon": -0.5087753, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne", + "owner": "Syndicat de l'Énergie de l'Orne", + "ref:EU:EVSE": "FR*S61*P61211A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4871423897, + "lat": 49.1668346, + "lon": 6.7178032, + "tags": { + "addr:city": "Carling", + "addr:postcode": "57490", + "addr:street": "Rue de la Frontière", + "amenity": "charging_station", + "capacity": "2", + "description": "Facturation à la minute sur la base de 2 € par heure sur les bornes de charge accélérée. Solde minimum compte Freshmile prépayé et autorisation en mode invité : 10 €.", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 4880698606, + "lat": 47.6152816, + "lon": -0.5623184, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49130*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 4881616714, + "lat": 44.46306, + "lon": 4.2158483, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07117*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4881866674, + "lat": 48.4219784, + "lon": 3.0234258, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77439A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4882599921, + "lat": 48.5132737, + "lon": 3.9060676, + "tags": { + "amenity": "charging_station", + "operator": "Terre de France-Champagne" + } + }, + { + "type": "node", + "id": 4882913385, + "lat": 44.9146663, + "lon": 6.6729136, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "fixme": "point approximatif à vérifier sur GPS", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05174*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4882913387, + "lat": 44.5687303, + "lon": 6.1008138, + "tags": { + "amenity": "charging_station", + "source": "gps" + } + }, + { + "type": "node", + "id": 4882913388, + "lat": 44.565364, + "lon": 6.1975608, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05017*A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 4883665887, + "lat": 48.0605003, + "lon": -3.4107309, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "no", + "authentication:none": "no", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue du Bel Air", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S56*P56182*A", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://morbihan-energies.fr/VE1/" + } + }, + { + "type": "node", + "id": 4885980830, + "lat": 50.739728, + "lon": 2.2750994, + "tags": { + "amenity": "charging_station", + "operator": "CASO" + } + }, + { + "type": "node", + "id": 4886500021, + "lat": 48.7049416, + "lon": 2.0378398, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "2", + "ref:EU:EVSE": "FR*A07*PCCHVC02", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4894327356, + "lat": 43.9227493, + "lon": 4.2572815, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30061*001", + "ref:EU:EVSE": "FR*S30*P30061*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4895829801, + "lat": 48.129597, + "lon": -2.0348663, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD353511;FR*S35*PSD353512", + "ref:FR:SDE35": "FR*S35*35133*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 4905662573, + "lat": 48.6302305, + "lon": -2.4676684, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4906515368, + "lat": 48.5566675, + "lon": -0.4106059, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61483B", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4907670129, + "lat": 48.5911358, + "lon": -0.3592516, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61168A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4912812916, + "lat": 47.0177877, + "lon": -1.4360376, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "model": "Diva SP", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44127A", + "socket:type2": "2", + "socket:type2:output": "22000", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4913015879, + "lat": 48.220089, + "lon": -1.7547353, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "fixme": "Borne absente du terrain en juillet 2023, suppression permanente ?", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD354211;FR*S35*PSD354212", + "ref:FR:SDE35": "FR*S35*35177*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4915401823, + "lat": 45.6797727, + "lon": 4.9118851, + "tags": { + "amenity": "charging_station", + "operator": "Satar (corbas)" + } + }, + { + "type": "node", + "id": 4915612372, + "lat": 48.5155285, + "lon": -4.0527923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29NJXA", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4916602086, + "lat": 48.4105934, + "lon": -1.3643486, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35257*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4916602087, + "lat": 48.4042994, + "lon": -1.2626172, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35273*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4917144125, + "lat": 43.8287203, + "lon": 1.2003645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 4917144126, + "lat": 43.9423093, + "lon": 1.1701529, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "ref": "AWBM1,DVTH1" + } + }, + { + "type": "node", + "id": 4917144127, + "lat": 44.040275, + "lon": 1.1115349, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 4917144128, + "lat": 44.04113, + "lon": 1.1118122, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 4917144129, + "lat": 44.0280313, + "lon": 1.0407613, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 4917144130, + "lat": 44.1061355, + "lon": 1.083913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 4919560135, + "lat": 45.6898337, + "lon": 5.9118487, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4920563202, + "lat": 44.4260875, + "lon": 4.2998554, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07207*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4920566851, + "lat": 44.5374908, + "lon": 4.3258818, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07343*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 4923893981, + "lat": 44.9759188, + "lon": 6.5106547, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05079*A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 4924280421, + "lat": 48.5153288, + "lon": 2.6351535, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77152A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4924455849, + "lat": 47.2144712, + "lon": 4.0243645, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "name": "Montsauche-les-Settons Maison des Jeunes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58180*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4925598396, + "lat": 42.9633415, + "lon": 1.6042564, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09122*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4927481985, + "lat": 43.9419351, + "lon": 4.8062464, + "tags": { + "access": "customers", + "addr:city": "Avignon", + "addr:street": "Boulevard Saint-Roch", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "source": "survey 2017" + } + }, + { + "type": "node", + "id": 4932650231, + "lat": 49.5280648, + "lon": 0.9318152, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 4935984545, + "lat": 50.7264217, + "lon": 1.6168624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Eurvin", + "network": "Pass Pass électrique", + "operator": "Sodetrel", + "owner": "Hauts-de-France", + "ref:EU:EVSE": "FR*SOD*P*NPDC*37*_*_*_", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 4937456583, + "lat": 47.6974333, + "lon": -2.8043313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de la République", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56158*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4938610889, + "lat": 43.8271196, + "lon": 1.3027095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "ref": "CQBT1,CRPC1" + } + }, + { + "type": "node", + "id": 4938660028, + "lat": 43.9128369, + "lon": 1.2242591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "ref": "AYKB1,AKSJ1" + } + }, + { + "type": "node", + "id": 4944766793, + "lat": 43.6664167, + "lon": 7.1274004, + "tags": { + "access": "customers", + "addr:city": "Cagnes-sur-Mer", + "addr:country": "FR", + "addr:housenumber": "119", + "addr:postcode": "06800", + "addr:street": "Avenue des Alpes", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Cagnes sur Mer Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/cagnessurmersupercharger" + } + }, + { + "type": "node", + "id": 4949104085, + "lat": 48.479871, + "lon": -1.124628, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35162*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 4949691253, + "lat": 48.030599, + "lon": -3.489704, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "no", + "authentication:none": "no", + "bicycle": "no", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue des écoles", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "parking:fee": "no", + "ref:EU:EVSE": "FR*256*P56057*A", + "scooter": "no", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "website": "http://morbihan-energies.fr/VE1/" + } + }, + { + "type": "node", + "id": 4949886552, + "lat": 47.4820915, + "lon": -2.4710092, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "description": "Station de recharge accélérée opérée par Morbihan énergies", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard de l'Océan", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "payment:mastercard": "yes", + "payment:visa": "yes", + "payment:visa_debit": "yes", + "ref:EU:EVSE": "FR*S56*P56155*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4951425404, + "lat": 48.3674516, + "lon": -3.5198259, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'car", + "network": "OUEST CHARGE - 22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "OUEST CHARGE - 22", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S22*PSDE26512", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 4955517647, + "lat": 43.6246126, + "lon": 4.0115077, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 4956667859, + "lat": 48.5091658, + "lon": -4.6870824, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KDBT", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4956940121, + "lat": 48.5489621, + "lon": -3.1415656, + "tags": { + "amenity": "charging_station", + "operator": "Lidl Frais" + } + }, + { + "type": "node", + "id": 4957221959, + "lat": 44.9326404, + "lon": 5.0244614, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 4960559947, + "lat": 44.8660923, + "lon": 4.9220477, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26196*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4964181423, + "lat": 43.8249524, + "lon": 4.6034302, + "tags": { + "amenity": "charging_station", + "operator": "Beaucaire" + } + }, + { + "type": "node", + "id": 4964760675, + "lat": 48.4902269, + "lon": -2.7369462, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4964760676, + "lat": 48.4846049, + "lon": -2.6783036, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4964760677, + "lat": 48.5066725, + "lon": -2.7688028, + "tags": { + "amenity": "charging_station", + "brand": "Brev'Car", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "operator": "Syndicat Départemental d’Énergie", + "operator:website": "https://www.sde22.fr/bornes-de-charge-pour-v-hicules", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "2", + "socket:type3:output": "22kW" + } + }, + { + "type": "node", + "id": 4964760678, + "lat": 48.5130582, + "lon": -2.668098, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4964760679, + "lat": 48.588712, + "lon": -2.5522353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4964778441, + "lat": 48.4461587, + "lon": -2.7449237, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4964781357, + "lat": 48.4082275, + "lon": -2.8178229, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 4966499088, + "lat": 49.3344028, + "lon": -0.4576941, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET184", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4969329660, + "lat": 47.8324912, + "lon": -4.1749871, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29MLCC", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4971117315, + "lat": 48.7128466, + "lon": 2.2121031, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Enel X" + } + }, + { + "type": "node", + "id": 4973295322, + "lat": 50.5831182, + "lon": 3.1138107, + "tags": { + "amenity": "charging_station", + "operator": "Viapost" + } + }, + { + "type": "node", + "id": 4973764290, + "lat": 47.4481528, + "lon": -1.3461558, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44107A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4974981265, + "lat": 44.7114347, + "lon": 5.091058, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26183*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4976380821, + "lat": 45.2295412, + "lon": 4.799797, + "tags": { + "amenity": "charging_station", + "operator": "Savajols" + } + }, + { + "type": "node", + "id": 4982267397, + "lat": 46.7733996, + "lon": 0.5357993, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B014", + "ref:EU:EVSE": "FR*S86*PSORE*B014", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4986542024, + "lat": 48.3741154, + "lon": -4.6431754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KBWW", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4988644934, + "lat": 45.3290464, + "lon": 5.266968, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38457*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400", + "website": "http://www.sedi.fr" + } + }, + { + "type": "node", + "id": 4989693323, + "lat": 48.5965862, + "lon": 2.5821205, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:none": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDESM", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S77*P77445A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "no" + } + }, + { + "type": "node", + "id": 4990610789, + "lat": 49.2907125, + "lon": -0.432044, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET246", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 4997522534, + "lat": 50.7654884, + "lon": 1.6073703, + "tags": { + "addr:city": "Wimereux", + "addr:street": "Avenue du Maréchal Foch", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62893*002", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522535, + "lat": 50.7781146, + "lon": 1.6195633, + "tags": { + "addr:city": "Wimereux", + "addr:street": "Rue du Château", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62893*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522536, + "lat": 50.708981, + "lon": 1.619467, + "tags": { + "addr:city": "Saint-Martin-Boulogne", + "addr:street": "Place de l'orme", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Martin-Boulogne - Orme", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62758*002", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522537, + "lat": 50.7264357, + "lon": 1.6336458, + "tags": { + "addr:city": "Saint-Martin-Boulogne", + "addr:street": "Place Briand", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Martin-Boulogne - Briand", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62758*003", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522538, + "lat": 50.6880448, + "lon": 1.6260196, + "tags": { + "addr:city": "Saint-Léonard", + "addr:street": "Avenue François Miellot", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Léonard - Miellot", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62755*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522539, + "lat": 50.7006701, + "lon": 1.5854486, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Outreau - Splinglard", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62643*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522540, + "lat": 50.69037, + "lon": 1.6034228, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "date": "01/06/2017", + "fee": "yes", + "name": "Outreau - Hauts Fourneaux", + "opening_hours": "24/7", + "operator": "Sodetrel", + "payment:mastercard": "yes", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522541, + "lat": 50.6332382, + "lon": 1.581052, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Neufchâtel-Hardelot - Ryche", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62604*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522542, + "lat": 50.6199743, + "lon": 1.6439027, + "tags": { + "addr:city": "Neufchâtel-Hardelot", + "addr:district": "Hauts-de-France", + "addr:street": "Rue des Allées, Neufchatel Hardelot", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Neufchâtel-Hardelot - Gendarmerie", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62604*002", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522543, + "lat": 50.7042792, + "lon": 1.5663168, + "tags": { + "addr:city": "Le Portel", + "addr:street": "Quai de la Violette", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62667*002", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522544, + "lat": 50.7112313, + "lon": 1.5751466, + "tags": { + "addr:city": "Le Portel", + "addr:street": "Avenue Gournay", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "C- Gournay", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62667*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522545, + "lat": 50.7308834, + "lon": 1.7075575, + "tags": { + "addr:city": "La Capelle-lès-Boulogne", + "addr:street": "Rue Marcel Caudevelle", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "La Capelle-lès-Boulogne - Caudevelle", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62908*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522546, + "lat": 50.6793534, + "lon": 1.571472, + "tags": { + "addr:city": "Équihen-Plage", + "addr:street": "Place de l'Église", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Équihen-Plage - Église", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62300*002", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4997522547, + "lat": 50.6736089, + "lon": 1.5712313, + "tags": { + "addr:city": "Équihen-Plage", + "addr:street": "Rue Charles Cazin", + "amenity": "charging_station", + "capacity": "2", + "date": "01/06/2017", + "fee": "yes", + "motorcar": "yes", + "name": "Équihen-Plage - Cazin", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "payment:mastercard": "yes", + "ref:EU:EVSE": "FR*H05*P62300*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://electrique.passpass.fr/" + } + }, + { + "type": "node", + "id": 4998716309, + "lat": 50.7248935, + "lon": 1.6130254, + "tags": { + "addr:city": "Boulogne-sur-Mer", + "addr:street": "Place de la Résistance", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62160*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 4998917023, + "lat": 49.3629501, + "lon": 0.8115754, + "tags": { + "amenity": "charging_station", + "operator": "transportes bernard" + } + }, + { + "type": "node", + "id": 5000373262, + "lat": 49.0002364, + "lon": 2.522871, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Charles de Gaulle (CDG Paris)", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*108*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5000373263, + "lat": 49.2305863, + "lon": 2.8979587, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5000839920, + "lat": 48.1115602, + "lon": -1.6703924, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "source": "data.rennes-metropole.fr" + } + }, + { + "type": "node", + "id": 5001316732, + "lat": 48.4495386, + "lon": -4.2515508, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Syndicat Départemental d’Énergie et d’Équipement du Finistère", + "owner:website": "https://www.sdef.fr/", + "ref:EU:EVSE": "FRS29PSDE29ZDNJ", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5003804376, + "lat": 50.7117303, + "lon": 3.176945, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "socket:type3c": "1" + } + }, + { + "type": "node", + "id": 5003809059, + "lat": 50.6587093, + "lon": 3.0129268, + "tags": { + "amenity": "charging_station", + "socket:type3c": "1" + } + }, + { + "type": "node", + "id": 5003811399, + "lat": 50.6413093, + "lon": 3.1204447, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "7", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "Mo-Sa 08:00-17:45", + "operator": "Freshmile SAS", + "owner": "Emil Frey BMW Villeneuve d'Ascq", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PLYNNVONFVX", + "socket:type2": "4", + "socket:type2_combo": "3", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5003832277, + "lat": 50.6454532, + "lon": 3.1407724, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type3c:output": "22kW" + } + }, + { + "type": "node", + "id": 5003832278, + "lat": 50.6459226, + "lon": 3.1406383, + "tags": { + "amenity": "charging_station", + "socket:type3c:output": "7kW" + } + }, + { + "type": "node", + "id": 5005355924, + "lat": 43.8616925, + "lon": 4.9949681, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5005804823, + "lat": 45.0854067, + "lon": 4.6253513, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07236*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5005804824, + "lat": 44.8165239, + "lon": 4.0631591, + "tags": { + "amenity": "charging_station", + "fixme": "Vérifier sur site l'existence de cette borne de recharge. Probablement doublon de la borne situéé 50 m au sud." + } + }, + { + "type": "node", + "id": 5007502690, + "lat": 49.7965851, + "lon": 3.4586239, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place du château", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0031", + "ref:EU:EVSE": "FR*S02*P0264831", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 5009395420, + "lat": 45.6595931, + "lon": 4.9013107, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "borne de recharge pour véhicules électriques, associée à deux places de parking réservées, sur le parking de l'Intermarché", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5012912077, + "lat": 48.7017135, + "lon": 6.2507872, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "name": "Pulnoy-Résidences Vertes", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 5013738789, + "lat": 46.7915494, + "lon": 3.1196176, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58264*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5014112104, + "lat": 47.891412, + "lon": -2.6415308, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "fixme": "Localisation exacte à vérifier", + "motorcar": "yes", + "name": "Parking Rue Nationale", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S56*P56071*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5015458736, + "lat": 50.3929082, + "lon": 3.1132308, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-20:00", + "parking:fee": "no", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015528609, + "lat": 50.1809594, + "lon": 3.2472346, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015573613, + "lat": 49.8584892, + "lon": 3.2478148, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015588455, + "lat": 49.7330245, + "lon": 3.0669661, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015588456, + "lat": 49.7330227, + "lon": 3.0670392, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015597122, + "lat": 49.5688655, + "lon": 2.9786725, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "1", + "socket:type3:output": "7kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015603667, + "lat": 49.4410365, + "lon": 2.8453844, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "ref": "YSPQ1", + "socket:schuko": "1", + "socket:schuko:output": "2kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015603668, + "lat": 49.4410309, + "lon": 2.8453934, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "ref": "YSPQ2", + "socket:schuko": "1", + "socket:schuko:output": "2kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015607388, + "lat": 49.4291937, + "lon": 2.8322587, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "authentication:short_message": "yes", + "authentication:short_message:number": "33670281696", + "authentication:short_message:text": "8477", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:schuko": "1", + "socket:schuko:output": "3kW", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015609439, + "lat": 49.4081566, + "lon": 2.7809768, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:none": "no", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:30-21:30", + "operator": "Carrefour", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015609440, + "lat": 49.4081431, + "lon": 2.7809557, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:none": "no", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:30-21:30", + "operator": "Carrefour", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015630457, + "lat": 49.3845845, + "lon": 2.4138231, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "yes", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "parking:fee": "no", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015630458, + "lat": 49.3843994, + "lon": 2.4137453, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "yes", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "parking:fee": "no", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015630459, + "lat": 49.3843566, + "lon": 2.4137252, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "yes", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "parking:fee": "no", + "socket:type3": "1", + "socket:type3:output": "7kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5015641519, + "lat": 49.3958448, + "lon": 2.4180708, + "tags": { + "amenity": "charging_station", + "authentication:short_message": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:schuko": "1", + "socket:schuko:output": "3kW", + "socket:type3": "1", + "socket:type3:output": "22kW" + } + }, + { + "type": "node", + "id": 5015649985, + "lat": 49.4551617, + "lon": 2.0997105, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "EVLink", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016105280, + "lat": 49.3986432, + "lon": 2.3861074, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "ref": "YSPQ1", + "socket:schuko": "1", + "socket:schuko:output": "3kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016105281, + "lat": 49.3986632, + "lon": 2.3860757, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "capacity": "1", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "ref": "YSPQ2", + "socket:schuko": "1", + "socket:schuko:output": "3kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016160553, + "lat": 46.373523, + "lon": 6.4799809, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5016403737, + "lat": 49.2575088, + "lon": 3.9658791, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "chargenow", + "operator_1": "kiwhipass", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016403738, + "lat": 48.9719104, + "lon": 4.3568197, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-19:00", + "operator": "Renault", + "parking:fee": "no", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016403739, + "lat": 48.971847, + "lon": 4.3573096, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Renault", + "parking:fee": "no", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 5016412465, + "lat": 48.7300892, + "lon": 4.6006574, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-20:00", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 5016412466, + "lat": 48.7300518, + "lon": 4.6006924, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-20:00", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016413341, + "lat": 48.7301191, + "lon": 4.604418, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "1", + "socket:type3:output": "3kW" + } + }, + { + "type": "node", + "id": 5016421690, + "lat": 48.6233661, + "lon": 4.9651354, + "tags": { + "amenity": "charging_station", + "covered": "no", + "motorcar": "yes", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5016421691, + "lat": 48.623347, + "lon": 4.9651233, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "1" + } + }, + { + "type": "node", + "id": 5018006442, + "lat": 49.6789761, + "lon": 1.0439853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Tôtes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*76*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5019981695, + "lat": 49.288897, + "lon": -0.1316227, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5022409417, + "lat": 47.1250988, + "lon": -1.9102401, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44005A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5023907513, + "lat": 49.2877372, + "lon": -0.1168356, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET137", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5024322044, + "lat": 49.247889, + "lon": -0.2756801, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET241", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5024759347, + "lat": 48.5870294, + "lon": 0.6468254, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue Charles de Gaulle", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Energie de l'Orne", + "owner": "Se 61", + "ref:EU:EVSE": "FR*S61*P61491B", + "socket:type2": "1", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5025173451, + "lat": 48.7408306, + "lon": -0.0252387, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61006B", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5027725221, + "lat": 43.8252168, + "lon": 5.0424376, + "tags": { + "amenity": "charging_station", + "operator": "Frigopool" + } + }, + { + "type": "node", + "id": 5028037271, + "lat": 47.0748902, + "lon": -1.3976093, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44002A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028121768, + "lat": 47.4150481, + "lon": -1.7897657, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5028121770, + "lat": 47.4141623, + "lon": -1.6538876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44073A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028510474, + "lat": 49.4187151, + "lon": 0.2376368, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET151", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5028575641, + "lat": 43.3607987, + "lon": -1.4004611, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*45", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5028577064, + "lat": 50.3690703, + "lon": 3.4756867, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59459*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028590532, + "lat": 47.8419493, + "lon": 1.9175377, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5028598406, + "lat": 50.3374596, + "lon": 3.4627416, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59475*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028602586, + "lat": 50.339449, + "lon": 3.515204, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59606*001", + "socket:chademo": "1", + "socket:type2": "3", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028609009, + "lat": 50.3311114, + "lon": 3.5308885, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59032*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028621909, + "lat": 50.349796, + "lon": 3.5440976, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59383*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5028632770, + "lat": 45.0728188, + "lon": 5.5523737, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38548*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5028706842, + "lat": 50.3573604, + "lon": 3.5286527, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59606*004", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 5030583802, + "lat": 48.5783773, + "lon": -3.8343023, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KBTN", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5030651737, + "lat": 50.690129, + "lon": 3.1803255, + "tags": { + "amenity": "charging_station", + "covered": "yes", + "level": "-1", + "motorcar": "yes", + "parking:fee": "yes", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5030651738, + "lat": 50.6900882, + "lon": 3.1803859, + "tags": { + "amenity": "charging_station", + "covered": "yes", + "motorcar": "yes", + "parking:fee": "yes", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 5031137541, + "lat": 48.2087511, + "lon": 1.1895959, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*YEV1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5031636772, + "lat": 45.7832494, + "lon": 3.1195684, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "socket:type3c": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 5032678124, + "lat": 50.3679711, + "lon": 3.0838839, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*012", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5034010056, + "lat": 49.296588, + "lon": -0.3015285, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET187", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5034222890, + "lat": 45.9321425, + "lon": 6.6334913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74256*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5034225535, + "lat": 46.0609902, + "lon": 6.5813135, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74081*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5034530379, + "lat": 49.1876054, + "lon": -0.0475274, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET199", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5034808530, + "lat": 45.8598638, + "lon": 6.6208652, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "currency:EUR": "yes", + "fee": "yes", + "payment:coins": "yes" + } + }, + { + "type": "node", + "id": 5035067827, + "lat": 44.657257, + "lon": 6.6513969, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "note": "At 2017-08 not in service yet", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05065*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5036512522, + "lat": 43.3849999, + "lon": -1.6614646, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "514475406657472", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*107", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5037390569, + "lat": 49.3253676, + "lon": -0.3699437, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET237", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5037690353, + "lat": 49.3347858, + "lon": -0.4185735, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET192", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5039228702, + "lat": 50.1838913, + "lon": 3.2547251, + "tags": { + "amenity": "charging_station", + "name": "Borne recharge" + } + }, + { + "type": "node", + "id": 5040439856, + "lat": 48.6455659, + "lon": -0.7099153, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Place Saint-Sauveur", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne", + "owner": "Se 61", + "ref:EU:EVSE": "FR*S61*P61232A", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5043154991, + "lat": 43.0006775, + "lon": 1.1371397, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09268*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5043161181, + "lat": 42.984762, + "lon": 1.1432759, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09261*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5043198067, + "lat": 42.9224338, + "lon": 1.0314808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09085*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5043289292, + "lat": 44.9772326, + "lon": -1.0749564, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33214*001", + "ref:EU:EVSE": "FR*S33*PMB33*60", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5043299475, + "lat": 45.0017417, + "lon": -1.1952597, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33901*001", + "ref:EU:EVSE": "FR*S33*PMB33*59", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5044642323, + "lat": 43.2650881, + "lon": -1.350907, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*37", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5050096621, + "lat": 43.9254046, + "lon": 5.0223093, + "tags": { + "amenity": "charging_station", + "operator": "Florette(zi la petite marine)" + } + }, + { + "type": "node", + "id": 5058446600, + "lat": 48.548373, + "lon": 2.7002349, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77269A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5059292725, + "lat": 44.0170544, + "lon": 4.7442913, + "tags": { + "amenity": "charging_station", + "operator": "FedEx (zi de l'aspre)" + } + }, + { + "type": "node", + "id": 5063094295, + "lat": 48.7098322, + "lon": 2.5869973, + "tags": { + "FIXME": "en cours d'installation (2017-08)", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2017-10" + } + }, + { + "type": "node", + "id": 5063094296, + "lat": 48.709756, + "lon": 2.5871113, + "tags": { + "FIXME": "en cours d'installation (2017-08)", + "amenity": "charging_station", + "capacity": "4", + "start_date": "2017-10" + } + }, + { + "type": "node", + "id": 5067074714, + "lat": 48.3839622, + "lon": -4.3479921, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 5072786643, + "lat": 46.9752312, + "lon": -0.0422139, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB22002A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5075008374, + "lat": 45.0407122, + "lon": 3.8857558, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Ombrière Place Michelet", + "opening_hours": "24/7", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5077355754, + "lat": 44.0999045, + "lon": 1.0846836, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 5077562299, + "lat": 48.8547725, + "lon": 2.6665529, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Claude Monet", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "327", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5077864220, + "lat": 48.8018455, + "lon": 2.1306591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "E55C", + "socket:type2": "2", + "socket:type2:output": "7kW", + "source": "survey", + "survey:date": "2022-09-15" + } + }, + { + "type": "node", + "id": 5079888522, + "lat": 46.72153, + "lon": -0.5896424, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB07067A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5080215429, + "lat": 47.2864161, + "lon": 5.135907, + "tags": { + "amenity": "charging_station", + "operator": "Epsilog" + } + }, + { + "type": "node", + "id": 5085708988, + "lat": 50.1872931, + "lon": 1.6300196, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PSTVALERYSOMME", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5085954242, + "lat": 46.6072601, + "lon": 4.6693314, + "tags": { + "amenity": "charging_station", + "description": "Fleur solaire. Borne de recharge de vélos électriques.", + "name": "Smart Flower" + } + }, + { + "type": "node", + "id": 5085954243, + "lat": 46.7143606, + "lon": 4.7046783, + "tags": { + "amenity": "charging_station", + "description": "Fleur solaire. Borne de recharge d'une voiture électrique et d'un vélo électrique. ", + "name": "Smart Flower" + } + }, + { + "type": "node", + "id": 5091258133, + "lat": 47.3090223, + "lon": 0.5095714, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Sodetrel", + "ref": "MAT-0002524", + "socket:chademo": "1", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5096673623, + "lat": 49.1985571, + "lon": 1.2188779, + "tags": { + "amenity": "charging_station", + "operator": "Intermarche (les mousqueteiras)" + } + }, + { + "type": "node", + "id": 5098163479, + "lat": 45.1495738, + "lon": 0.7999643, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "charging_station:output": "300 kW", + "name": "Fastned, Aire du Manoir", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "8", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:current": "400", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 5098497825, + "lat": 45.9570109, + "lon": 2.9893004, + "tags": { + "access": "yes", + "amenity": "charging_station", + "description": "la borne est enlevée", + "fee": "yes", + "operator": "Corri-Door", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 5098899852, + "lat": 48.8827421, + "lon": 2.3197015, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9017*06", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.belib.paris" + } + }, + { + "type": "node", + "id": 5102827625, + "lat": 48.5734802, + "lon": -4.3203548, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ABXA", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5102844422, + "lat": 48.6647764, + "lon": -4.3268417, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BMUQ", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5103754883, + "lat": 43.8358875, + "lon": 5.0518023, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Nissan", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50kw", + "socket:type2": "1", + "socket:type2:output": "43kw" + } + }, + { + "type": "node", + "id": 5107362322, + "lat": 45.0598285, + "lon": 5.2495509, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Nazaire-en-Royans Angle Léon Laurent/Julie Chaumat", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26320*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5109652521, + "lat": 48.6446491, + "lon": -4.3670172, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ABBY", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5111111265, + "lat": 48.3604333, + "lon": -4.7702297, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ele": "78", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BPPV", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5117687854, + "lat": 48.5728871, + "lon": 1.9376863, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "operator": "Rambouillet Territoires" + } + }, + { + "type": "node", + "id": 5117689769, + "lat": 48.5727412, + "lon": 1.9423968, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Rambouillet Territoires" + } + }, + { + "type": "node", + "id": 5117772722, + "lat": 43.8937569, + "lon": 4.8785618, + "tags": { + "amenity": "charging_station", + "operator": "Philippe rey" + } + }, + { + "type": "node", + "id": 5122570270, + "lat": 48.5862883, + "lon": -3.137067, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5122754227, + "lat": 44.6498605, + "lon": 6.5809648, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05134*A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 5125066082, + "lat": 49.2608102, + "lon": 3.9645287, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Champea shopping", + "owner": "Lidl DR25", + "parking:fee": "no", + "ref:EU:EVSE": "FR*FR1*PBYDGEFUMKN", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "4", + "socket:type3": "2", + "socket:type3:output": "11kW", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126033422, + "lat": 48.5703965, + "lon": -4.5233095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29YDVJ", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5126033424, + "lat": 48.6064169, + "lon": -4.5041035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29JVTK", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5126044121, + "lat": 48.5876356, + "lon": -4.5745925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BBMB", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5126131867, + "lat": 48.7726256, + "lon": 2.3466648, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-21:00", + "parking:fee": "no", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 5126734005, + "lat": 48.8170321, + "lon": 2.3264905, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Renault", + "operator:type": "private", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 5126734006, + "lat": 48.8172513, + "lon": 2.3264113, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "yes", + "fee": "no", + "motorcar": "yes", + "operator": "Renault", + "operator:type": "private", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "parking:fee": "no", + "socket:type3": "2", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734007, + "lat": 48.8538578, + "lon": 2.7828971, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "no", + "mapillary": "538321910663562", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734008, + "lat": 48.85378, + "lon": 2.7828827, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734009, + "lat": 48.7198722, + "lon": 3.5490941, + "tags": { + "amenity": "charging_station", + "authentication:short_message": "yes", + "authentication:short_message:number": "+33632819980", + "authentication:short_message:text": "3005", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "ref": "3005", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734010, + "lat": 48.7115063, + "lon": 3.7308281, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734011, + "lat": 48.5058262, + "lon": 3.7655068, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Leclerc", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734012, + "lat": 48.7525187, + "lon": 3.9922937, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:schuko": "2", + "socket:type2": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734015, + "lat": 48.760069, + "lon": 5.1820655, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "1", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2": "1", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 5126734016, + "lat": 48.7669565, + "lon": 5.1753092, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-18:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734017, + "lat": 48.767029, + "lon": 5.1752069, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734018, + "lat": 48.6101324, + "lon": 5.3969305, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:schuko": "2", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734019, + "lat": 48.6749104, + "lon": 5.9277356, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "4", + "covered": "no", + "motorcar": "yes", + "opening_hours": "Mo-Su 05:00-22:00", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type2": "4", + "source": "survey;Ortho HR", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734020, + "lat": 48.7027968, + "lon": 6.1246264, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734121, + "lat": 48.7028285, + "lon": 6.1246763, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734123, + "lat": 48.5840833, + "lon": 6.4895787, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734124, + "lat": 48.5840769, + "lon": 6.4895318, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734125, + "lat": 48.7325135, + "lon": 7.0432578, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "parking:fee": "no", + "socket:schuko": "1", + "socket:schuko:output": "3kW", + "socket:type3": "1", + "socket:type3:output": "22kW", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734126, + "lat": 48.7391869, + "lon": 7.0721433, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Nissan", + "operator:wikidata": "Q20165", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734127, + "lat": 48.73298, + "lon": 7.0808241, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "socket:type3": "2", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734128, + "lat": 48.7430556, + "lon": 7.0962148, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "freshmile", + "parking:fee": "no", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734129, + "lat": 48.6975066, + "lon": 7.7857906, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:schuko": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5126734130, + "lat": 48.611066, + "lon": 7.7046996, + "tags": { + "amenity": "charging_station", + "covered": "yes", + "fee": "no", + "level": "-1", + "motorcar": "yes", + "opening_hours": "Mo-Fr 07:00-19:00", + "parking:fee": "no", + "socket:cee_blue": "1", + "socket:schuko": "1", + "socket:type2": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 5129101495, + "lat": 43.1027082, + "lon": 1.4428018, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 5131690751, + "lat": 47.8536554, + "lon": -1.680128, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35012*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5131697921, + "lat": 47.8433426, + "lon": -1.6879332, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35012*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5132509700, + "lat": 45.6206327, + "lon": 4.7470191, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "2", + "motorcar": "yes", + "name": "Mairie Montagny", + "operator": "Evlink", + "socket:type2_combo": "1", + "source": "survey 2017-09", + "voltage": "230" + } + }, + { + "type": "node", + "id": 5134517285, + "lat": 50.2367274, + "lon": 4.0927444, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59003*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5138133206, + "lat": 44.8837942, + "lon": 0.8909681, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24240*001", + "ref:EU:EVSE": "FR*S24*PMB24*57", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5139201807, + "lat": 46.5852786, + "lon": 3.0543211, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PBOURBON", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5139206087, + "lat": 46.408806, + "lon": 3.0518575, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PLEMONTET", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5139220773, + "lat": 46.4680211, + "lon": 2.9636564, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PBUXIERE", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5139275317, + "lat": 46.479823, + "lon": 3.1250234, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PNOYANTMARCHE", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5141755615, + "lat": 48.433749, + "lon": 0.0365132, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue l'Abbé Loublier", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61116A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5145762723, + "lat": 48.5362008, + "lon": -3.0006111, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "mapillary": "2802665266730334", + "motorcar": "yes", + "survey:date": "2018-09-04" + } + }, + { + "type": "node", + "id": 5150133375, + "lat": 44.5424356, + "lon": -0.2539542, + "tags": { + "access": "customers", + "addr:city": "Langon", + "addr:country": "FR", + "addr:postcode": "33210", + "addr:street": "Boulevard Pierre Lagorce", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "capacity:charging": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Langon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/langon" + } + }, + { + "type": "node", + "id": 5151223628, + "lat": 45.1221195, + "lon": 4.9852777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26301*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5151231927, + "lat": 45.0928599, + "lon": 5.0486891, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26231*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5152483765, + "lat": 45.3851688, + "lon": 5.4760107, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38118*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5153165921, + "lat": 48.7226522, + "lon": 2.4043129, + "tags": { + "amenity": "charging_station", + "operator": "Scofel,rue du jacana(D118)" + } + }, + { + "type": "node", + "id": 5153218338, + "lat": 47.7389802, + "lon": -2.2129227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place de la Mairie", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56060*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5154729132, + "lat": 45.9503409, + "lon": -0.5022647, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "note": "opening hours probably only applicable to the shop not the charging station", + "opening_hours": "Mo-Sa 08:30-20:00", + "operator": "Lidl", + "ref": "FR*LDL*E00002817;FR*LDL*E00002818;FR*LDL*E00002819", + "socket:chademo": "1", + "socket:chademo:current": "143", + "socket:chademo:output": "50 kW", + "socket:chademo:voltage": "400", + "socket:type1_combo": "1", + "socket:type2_cable": "1", + "socket:type2_cable:current": "143", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "143", + "socket:type2_combo:output": "50 kW", + "socket:type2_combo:voltage": "400", + "source": "survey" + } + }, + { + "type": "node", + "id": 5155162032, + "lat": 47.7133675, + "lon": -2.2196104, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de la Citée des Fleurs", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56154*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5161818490, + "lat": 44.870777, + "lon": 3.2532634, + "tags": { + "access": "customers", + "addr:city": "Albaret-Sainte-Marie", + "addr:postcode": "48200", + "addr:street": "A75 - Aire de la garde", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Albaret-Sainte-Marie Supercharger", + "network": "Tesla", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "owner": "Tesla", + "short_name": "Tesla", + "socket:chademo": "1", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/albaretsaintemariesupercharger" + } + }, + { + "type": "node", + "id": 5163485785, + "lat": 49.4935649, + "lon": 0.1060798, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5163501870, + "lat": 49.5543821, + "lon": 0.1151153, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE76" + } + }, + { + "type": "node", + "id": 5164660058, + "lat": 43.1782998, + "lon": 2.5428213, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire des Corbières Nord", + "network": "Corri-dor", + "note": "A61", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*180*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5164665521, + "lat": 49.2987239, + "lon": 1.1053124, + "tags": { + "amenity": "charging_station", + "operator": "id logistics" + } + }, + { + "type": "node", + "id": 5164671374, + "lat": 45.0169753, + "lon": 5.0401792, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26057*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5165610378, + "lat": 45.6146598, + "lon": 5.1838886, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "parking:fee": "no", + "ref:EU:EVSE": "FR*EBN*PSKUWSYWI8M", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5165824621, + "lat": 42.4814396, + "lon": 2.6824569, + "tags": { + "amenity": "charging_station", + "socket": "cee_blue", + "socket:cee_blue": "2" + } + }, + { + "type": "node", + "id": 5169424721, + "lat": 48.6052038, + "lon": -4.1124353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29HNFZ", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5169863202, + "lat": 50.2826365, + "lon": 2.7304217, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté Urbaine d'Arras", + "ref:EU:EVSE": "FR*H06*P62263*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5170775716, + "lat": 47.0573605, + "lon": -1.3762031, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "model": "Diva SP", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44142A", + "socket:type2": "2", + "socket:type2:output": "22000", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5171751311, + "lat": 43.6830182, + "lon": 3.851111, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de chargement pour voiture électrique", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34247*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "locale" + } + }, + { + "type": "node", + "id": 5174520434, + "lat": 48.7031293, + "lon": 2.0710909, + "tags": { + "addr:city": "Saint-Rémy-lès-Chevreuse", + "addr:housenumber": "5", + "addr:postcode": "78470", + "addr:street": "Rue Ditte", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Rémy-lès-Chevreuse - RER", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "15", + "ref:EU:EVSE": "FR*A07*PCCHVC15", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5180140108, + "lat": 46.071871, + "lon": 6.3050332, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74224*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5182077597, + "lat": 47.437688, + "lon": -1.5012038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44110A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5187900721, + "lat": 45.7528142, + "lon": 4.8379907, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 7 | Quai Claude Bernard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY705A;MAT-009028", + "ref:EU:EVSE": "FR*GLY*PLYON705A;FR*GLY*PLYON10211", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5187952590, + "lat": 49.3889835, + "lon": 1.0597991, + "tags": { + "access": "customers", + "addr:city": "Saint-Etienne-du-Rouvray", + "addr:country": "FR", + "addr:postcode": "76800", + "addr:street": "Rue de la Mare Sansoure", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "mapillary": "304383367829022", + "motorcar": "yes", + "name": "Rouen Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/rouensupercharger" + } + }, + { + "type": "node", + "id": 5193418842, + "lat": 48.8364074, + "lon": 2.277917, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5198504094, + "lat": 46.0682022, + "lon": 6.3037171, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74224*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5200240221, + "lat": 48.8039351, + "lon": 2.4017827, + "tags": { + "amenity": "charging_station", + "operator": "Transportes Besson(Ivri s/seine)" + } + }, + { + "type": "node", + "id": 5200706256, + "lat": 48.6749053, + "lon": 1.9741384, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*A05*PRMBT1312", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5206473913, + "lat": 44.4421384, + "lon": 0.6256708, + "tags": { + "addr:city": "Casseneuil", + "addr:postcode": "47440", + "addr:street": "Avenue de la Gare", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47049-001-1;FR-S47-E47049-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*84", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5209262671, + "lat": 44.3334243, + "lon": 3.8981952, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48194*001", + "ref:EU:EVSE": "FR*S48*P48194*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5210151459, + "lat": 44.1733186, + "lon": 4.7612743, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Freshmile", + "capacity": "2", + "charge": "5€/45min", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*P58906910D54E7", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2:output": "50 kW", + "socket:type2_combo": "2", + "survey:date": "2017" + } + }, + { + "type": "node", + "id": 5210313027, + "lat": 43.6688625, + "lon": 4.4259061, + "tags": { + "amenity": "charging_station", + "operator": "Covial" + } + }, + { + "type": "node", + "id": 5212787064, + "lat": 47.909485, + "lon": 7.2116647, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 5212819463, + "lat": 47.7553476, + "lon": 3.4149134, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89311*A*B1*D;FR*S89*E89311*A*B1*G", + "charging_station:ref": "FR*S89*P89311*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89311 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5214010448, + "lat": 43.1099746, + "lon": 0.8662095, + "tags": { + "addr:city": "Beauchalot", + "addr:postcode": "31360", + "addr:street": "Chemin du Pré Commun", + "amenity": "charging_station", + "name": "Borne de recharge pour véhicules électriques" + } + }, + { + "type": "node", + "id": 5218281326, + "lat": 43.5782967, + "lon": 1.2725668, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "reveo" + } + }, + { + "type": "node", + "id": 5219767091, + "lat": 44.2451696, + "lon": 3.9235602, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref:EU:EVSE": "FR*S48*P48051*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5223891425, + "lat": 48.4139285, + "lon": -3.9560257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BHML", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5226185148, + "lat": 49.2377886, + "lon": 2.8883519, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Jeu de Paume", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PGVYQTG", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5226818649, + "lat": 44.4422724, + "lon": 0.6216019, + "tags": { + "addr:city": "Casseneuil", + "addr:postcode": "47440", + "addr:street": "Chemin de Pascalet", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47049-002-1;FR-S47-E47049-002-2", + "ref:EU:EVSE": "FR*S47*PMB47*85", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5226820649, + "lat": 44.3911048, + "lon": 0.3089073, + "tags": { + "addr:city": "Tonneins", + "addr:postcode": "47400", + "addr:street": "Rue Ducourneau", + "amenity": "charging_station", + "operator": "Mobive", + "ref": "FR-S47-E47310-001-1;FR-S47-E47310-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5226820650, + "lat": 44.3901177, + "lon": 0.3102075, + "tags": { + "addr:city": "Tonneins", + "addr:postcode": "47400", + "addr:street": "Maréchal Foch", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47310-002-1;FR-S47-E47310-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5226822721, + "lat": 44.4094491, + "lon": 0.2184726, + "tags": { + "addr:city": "Le Mas d'Agenais", + "addr:postcode": "47430", + "addr:street": "Place des Fosses de la Ville", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47159-001-1;FR-S47-E47159-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5226850219, + "lat": 44.3980589, + "lon": 0.3006542, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 5226850220, + "lat": 44.3987968, + "lon": 0.3005898, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 5227642921, + "lat": 43.4757994, + "lon": 5.2338173, + "tags": { + "amenity": "charging_station", + "operator": "Viapost" + } + }, + { + "type": "node", + "id": 5230115059, + "lat": 44.3012948, + "lon": 4.5684474, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07268*A", + "ref:EU:EVSE": "FR*EBN*PZNYOVG5Q1H", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5230841397, + "lat": 43.0505219, + "lon": 2.2189024, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Esplanade François Mitterrand", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11206001", + "socket:chademo": "6", + "socket:schuko": "6", + "socket:type2": "6", + "socket:type2_combo": "6" + } + }, + { + "type": "node", + "id": 5230841398, + "lat": 42.8737045, + "lon": 2.182525, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11304001", + "scooter": "yes", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 5232000322, + "lat": 49.2502325, + "lon": 1.1799429, + "tags": { + "amenity": "charging_station", + "operator": "la poste" + } + }, + { + "type": "node", + "id": 5232261823, + "lat": 44.0907934, + "lon": 6.2387729, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S24*P24335*001", + "ref:EU:EVSE": "FR*EBN*PCA3BLMPVBD", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5236089445, + "lat": 48.8521502, + "lon": 2.2224327, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5236150697, + "lat": 43.3587396, + "lon": 1.6227995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SDEHG", + "ref": "GVHD2", + "socket:type3c": "2" + } + }, + { + "type": "node", + "id": 5236540221, + "lat": 43.5898979, + "lon": -0.7430329, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*48", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5237482095, + "lat": 43.3975508, + "lon": 1.7169762, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "payment:credit_cards": "no", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S31*PKWFNTQ", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5238050225, + "lat": 47.1142094, + "lon": -2.0975342, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pornic \"Gare\"", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44131A", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5238050238, + "lat": 47.1159328, + "lon": -2.1019845, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pornic \"Foch\"", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44131B", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5240030724, + "lat": 49.4762839, + "lon": 0.6390443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Norville", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*47*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5240624194, + "lat": 44.7659838, + "lon": 6.7400034, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05007*A", + "socket:type2": "2", + "socket:type2_cable": "0", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5241260964, + "lat": 43.8109038, + "lon": 5.7499512, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Place des Ferrages SDE04", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref": "FR*S04*P04152*A", + "ref:EU:EVSE": "FR*EBN*PZQJLTS8LZQ", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5244585188, + "lat": 47.3982527, + "lon": -1.4535034, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44122A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5245372785, + "lat": 42.5880067, + "lon": 2.3703154, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villefranche-de-Conflent", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66223*001", + "ref:EU:EVSE": "FR*S66*P66223001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5246098278, + "lat": 43.8333472, + "lon": 4.3613375, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30189*015", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5248906242, + "lat": 47.4419532, + "lon": -1.4317994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44205A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5250485368, + "lat": 44.1033794, + "lon": 1.0859732, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 5253080307, + "lat": 48.5579721, + "lon": -4.6998394, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ACTS", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5253080308, + "lat": 48.5421088, + "lon": -4.6588441, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KBRW", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5258495039, + "lat": 48.7502369, + "lon": 2.3475778, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "La borne bleue", + "supervised": "no" + } + }, + { + "type": "node", + "id": 5262153821, + "lat": 48.4975963, + "lon": -4.4306539, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BRSR", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5264160299, + "lat": 42.8039374, + "lon": 2.295639, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Château de Puilaurens", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11302001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5265461085, + "lat": 48.7313935, + "lon": 4.599848, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 5266180658, + "lat": 44.6611826, + "lon": 6.6493367, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05065*A", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 5272376114, + "lat": 44.5995939, + "lon": 4.3827677, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07231*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5272381338, + "lat": 44.6812478, + "lon": 4.2674834, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07156*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5273971935, + "lat": 42.4936104, + "lon": 2.1187279, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66188*001", + "ref:EU:EVSE": "FR*S66*P66188*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5275002946, + "lat": 46.580097, + "lon": 1.9879283, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Marché", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 5275160141, + "lat": 46.5842657, + "lon": 1.9882751, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Ernest Nivet", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 5278991239, + "lat": 44.4862479, + "lon": 5.3813157, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26215*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5279463041, + "lat": 46.0199018, + "lon": 6.6210812, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74159*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5282109667, + "lat": 43.5619686, + "lon": -1.4464363, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "description": "Borne de recharge pour véhicules électriques. Quatre types de prises. Recharge rapide (50 kW).", + "fee": "yes", + "level": "0", + "mapillary": "154973129919090", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*72", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5284502545, + "lat": 48.8380996, + "lon": 8.084925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "lastcheck": "2021-11-06", + "opening_hours": "Mo-Sa 10:00-19:00; Jan 01 off; Apr 14 off; Apr 17 off; May 01 off; May 08 off; Jun 05 off; Jul 14 off; Aug 15 off; Nov 01 off; Dec 24-26 off; Dec 31 off", + "ref": "Roppenheim The Style Outlets", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5286157038, + "lat": 43.4225367, + "lon": 5.0534759, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Auchan / Nissan" + } + }, + { + "type": "node", + "id": 5287418512, + "lat": 45.0580777, + "lon": 1.2942725, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5287878316, + "lat": 44.5583837, + "lon": 4.5019289, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07341*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5287884837, + "lat": 44.4062564, + "lon": 4.3899272, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07330*B", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "voltage": "500", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5287887249, + "lat": 44.5552536, + "lon": 4.4512608, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07241*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5287910923, + "lat": 44.6123549, + "lon": 4.4089495, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07229*A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "voltage": "500", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5291240791, + "lat": 44.3521625, + "lon": 6.3578071, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04205*A", + "ref:EU:EVSE": "FR*EBN*PPMYFKJ", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5291805147, + "lat": 50.3740651, + "lon": 3.0861086, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5294146221, + "lat": 48.689265, + "lon": -4.0786086, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BKAM", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5299461123, + "lat": 44.4141998, + "lon": 5.3563379, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26264*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5299596821, + "lat": 48.575427, + "lon": -3.8434875, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29JCAW", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5299643889, + "lat": 48.4472718, + "lon": 1.4840274, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART7", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5300884345, + "lat": 49.1455814, + "lon": -0.3653726, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "KiWhi" + } + }, + { + "type": "node", + "id": 5302024377, + "lat": 47.881506, + "lon": -2.8290187, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "fixme": "Vérifier la capacité (était 1 en 2017, 2 d'après open data)", + "motorcar": "yes", + "name": "Rue Maréchal Leclerc", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56117*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5303113288, + "lat": 49.3021418, + "lon": -0.3145079, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref": "2381;2382", + "ref:EU:EVSE": "FR*T14*P*ET238", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5304769421, + "lat": 43.2865971, + "lon": 1.3470534, + "tags": { + "amenity": "charging_station", + "operator": "j.p.s. lait" + } + }, + { + "type": "node", + "id": 5305387816, + "lat": 47.4893595, + "lon": 3.908334, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89025*A*B1*G;FR*S89*E89025*A*B1*D", + "charging_station:ref": "FR*S89*P89025*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89025*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5306702202, + "lat": 47.6148414, + "lon": -2.8301568, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "no", + "authentication:none": "yes", + "authentication:phone_call": "no", + "authentication:short_message": "no", + "bicycle": "yes", + "capacity": "2", + "email": "opendata56@morbihan-energies.fr", + "fee": "yes", + "moped": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rue de la Carrière", + "network": "Morbihan Energies", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S56*PLDQXAG", + "scooter": "no", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "truck": "no" + } + }, + { + "type": "node", + "id": 5306714923, + "lat": 48.5381494, + "lon": -4.3117046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BKCC", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5308521425, + "lat": 43.2208487, + "lon": -0.8925835, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "KiWhi Pass Borne de recharge", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*76", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5308521426, + "lat": 43.2311639, + "lon": -0.8745932, + "tags": { + "amenity": "charging_station", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 5310912708, + "lat": 48.8420681, + "lon": 2.2037467, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "no", + "authentication:none": "no", + "authentication:phone_call": "no", + "authentication:short_message": "no", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*112", + "scooter": "no", + "socket:chademo": "1", + "source": "data.gouv.fr:Etalab - 01/2020", + "truck": "no" + } + }, + { + "type": "node", + "id": 5318595504, + "lat": 50.5952001, + "lon": 2.8254968, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Aubers - Place de l'Eglise", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*299*1*_*_", + "survey:date": "2018" + } + }, + { + "type": "node", + "id": 5319830970, + "lat": 45.1483476, + "lon": 5.311511, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 5321979984, + "lat": 47.0977157, + "lon": 5.5019562, + "tags": { + "amenity": "charging_station", + "operator": "Colruyt" + } + }, + { + "type": "node", + "id": 5323327956, + "lat": 47.7362478, + "lon": -3.382566, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56121*L", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5323327957, + "lat": 47.7305309, + "lon": -3.3596358, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56121*O", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5323327958, + "lat": 47.7903192, + "lon": -3.4156557, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "highway": "bus_stop", + "motorcar": "yes", + "name": "A. Lesage", + "name:br": "A. Lesage", + "opening_hours": "24/7", + "owner": "SDE 56", + "phone": "+33297854394", + "public_transport": "platform", + "ref:EU:EVSE": "FR*S56*P56185*A", + "ref:FR:CTRL": "CTRL:ARCS2", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source:name:br": "proper translation", + "survey:date": "2018" + } + }, + { + "type": "node", + "id": 5323327959, + "lat": 47.7077719, + "lon": -3.3577975, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56181*A", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5324277880, + "lat": 48.7061034, + "lon": 2.0449876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Éco-Mobilité", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC01", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5327696421, + "lat": 48.4162406, + "lon": 1.8790951, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*SAI1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5329334637, + "lat": 46.4289405, + "lon": 0.1158574, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B059", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5329334638, + "lat": 46.4352527, + "lon": 0.1222949, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B058", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5330041121, + "lat": 47.7468149, + "lon": -3.3682101, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56121*N", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5331640738, + "lat": 48.8393877, + "lon": 2.3876338, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX12*02", + "socket:type2": "6", + "socket:typee": "6", + "source": "survey" + } + }, + { + "type": "node", + "id": 5335124792, + "lat": 48.1983847, + "lon": 3.2906089, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89387*A*B1*G;FR*S89*E89387*A*B1*D", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89387*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5335614548, + "lat": 44.4718007, + "lon": 2.4655093, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12138*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5336564622, + "lat": 48.8398356, + "lon": 2.6546668, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "4617782018236997", + "motorcar": "yes", + "name": "Torcy RER - Léon Blum", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "212", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5337813039, + "lat": 45.641736, + "lon": 5.1311751, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "operator": "Super U", + "socket:type3": "2", + "socket:type3:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "voltage": "230" + } + }, + { + "type": "node", + "id": 5340833495, + "lat": 44.1913648, + "lon": 3.2071824, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48131*001", + "ref:EU:EVSE": "FR*S48*P48131*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5341650611, + "lat": 47.7531386, + "lon": -3.3778741, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56121*H", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5351024370, + "lat": 43.3900666, + "lon": 1.6838934, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "no", + "capacity": "2", + "covered": "no", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "payment:credit_cards": "no", + "phone": "+33369246732", + "ref": "EVPH1;EVPH2", + "ref:EU:EVSE": "FR*S31*PAMFDJR", + "scooter": "no", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "truck": "no" + } + }, + { + "type": "node", + "id": 5352418213, + "lat": 49.1405835, + "lon": 2.4702644, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCOYELAFORET", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352679548, + "lat": 43.0044304, + "lon": 1.1284248, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352690172, + "lat": 42.8638176, + "lon": 1.2029702, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09285*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352706239, + "lat": 43.0128989, + "lon": 1.4295422, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09042*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352709128, + "lat": 42.9938921, + "lon": 1.2794895, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09246*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352717679, + "lat": 43.1962768, + "lon": 1.0015181, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5352723593, + "lat": 43.2001738, + "lon": 1.0118205, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "payment:credit_cards": "no", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S31*PHQDVPR", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5352728312, + "lat": 43.1762957, + "lon": 0.9718399, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352739340, + "lat": 43.1081115, + "lon": 1.6291928, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352739341, + "lat": 43.1081291, + "lon": 1.6295925, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352742404, + "lat": 43.1051674, + "lon": 1.6310849, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352745138, + "lat": 49.3084728, + "lon": 2.7271984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "École", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PWQSGHK", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352753236, + "lat": 43.1154541, + "lon": 1.6149888, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09225*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352765794, + "lat": 43.0866104, + "lon": 1.6273942, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge Révéo", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09265*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352771765, + "lat": 43.0420351, + "lon": 1.628857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09324*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352797078, + "lat": 42.9495299, + "lon": 1.6249871, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352797079, + "lat": 42.9489742, + "lon": 1.6234251, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 5352804902, + "lat": 42.8452742, + "lon": 1.6039864, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09306*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352808300, + "lat": 42.7616005, + "lon": 1.7608245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09176*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352813997, + "lat": 42.7196148, + "lon": 1.8369671, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09032*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5352835787, + "lat": 42.7205728, + "lon": 1.8410282, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09032*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5355495709, + "lat": 47.7743197, + "lon": -3.3409061, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Youri Gagarine", + "network": "Morbihan énergies", + "note": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "protected": "bollard", + "ref:EU:EVSE": "FR*S56*P56098*B", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5358659721, + "lat": 44.8116088, + "lon": -0.5353343, + "tags": { + "amenity": "charging_station", + "operator": "La poste (Collisimo)" + } + }, + { + "type": "node", + "id": 5362008439, + "lat": 47.7536499, + "lon": -3.3621752, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33 9 70830213", + "ref:EU:EVSE": "FR*S56*P56121*M", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5365814890, + "lat": 45.6101506, + "lon": -0.5987354, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Saint Leger Est", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 5366301165, + "lat": 44.9993896, + "lon": 4.9994834, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "charging_station:output": "50 kW", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26004*D", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 5368292034, + "lat": 43.5417932, + "lon": -1.3860511, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "description": "La borne de recharge pour véhicules électrique se situe sur le parking du supermarché. 4 prises différentes : TYPE 2 (Rapide 43KW 400V AC-TRI 63A), CHADEMO (Rapide 50KW 400V DC 125A), COMBO CCS EU (Rapide 50KW 400V DC 125A), DOMESTIQUE UE.", + "fee": "yes", + "level": "0", + "mapillary": "510958496608912", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S40*PMB40*79", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5368898850, + "lat": 48.9736664, + "lon": 2.2028576, + "tags": { + "addr:city": "Cormeilles-en-Parisis", + "addr:postcode": "95240", + "addr:street": "Rue des Carrières", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5371108562, + "lat": 47.8200927, + "lon": -1.3192753, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5374412489, + "lat": 48.1998276, + "lon": 3.2807074, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89387*B*B1*D;FR*S89*E89387*B*B1*G", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89387*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5377687427, + "lat": 48.0340304, + "lon": -1.7272634, + "tags": { + "amenity": "charging_station", + "operator": "Routier Bretons" + } + }, + { + "type": "node", + "id": 5382554621, + "lat": 47.6842417, + "lon": 6.4928539, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Place de la Libération", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07031066", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5382962801, + "lat": 48.1159467, + "lon": -4.1198301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref": "FJRU", + "ref:EU:EVSE": "FRS29PSDE29BCBQ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5400790420, + "lat": 45.8007392, + "lon": 1.1160822, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "Ionity", + "opening_hours": "24/7", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5401449073, + "lat": 48.6949064, + "lon": 2.6114175, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5401499820, + "lat": 47.1420561, + "lon": 2.2376288, + "tags": { + "amenity": "charging_station", + "amperage": "50", + "authentication": "none", + "capacity": "2", + "fee": "no", + "name": "Borne de recharge Lidl Mehun", + "note": "Free Rapid charger 20kWh AC T2 / DC Chademo Combo.", + "operator": "LIDL", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5403735124, + "lat": 48.9375217, + "lon": 2.2867949, + "tags": { + "amenity": "charging_station", + "operator": "la poste" + } + }, + { + "type": "node", + "id": 5404962621, + "lat": 47.908275, + "lon": -2.9768737, + "tags": { + "addr:street": "Rue du Manéguen", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Manéguen", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56074*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5415844887, + "lat": 43.4280948, + "lon": 3.6082366, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34157001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5417357429, + "lat": 47.7612687, + "lon": -3.3860207, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "kiwhipass;sodetrel;vinci;nissan", + "authentication:nfc": "yes", + "capacity": "2", + "charge": "2,40 € / 1,90 € + 18 €/an pour 1h30", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33297854394", + "ref:EU:EVSE": "FR*S56*P56121*K", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "http://www.morbihan-energies.fr/VE/" + } + }, + { + "type": "node", + "id": 5418483880, + "lat": 47.7629523, + "lon": -3.3786151, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56121*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "survey:date": "2018" + } + }, + { + "type": "node", + "id": 5422671047, + "lat": 49.6428255, + "lon": 0.1627169, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5426866112, + "lat": 43.111221, + "lon": 3.0960316, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11170001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5431043285, + "lat": 44.6027089, + "lon": 0.3596637, + "tags": { + "addr:city": "Miramont-de-Guyenne", + "addr:postcode": "47800", + "addr:street": "Boulevard Aristide Briand", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47168-001-1;FR-S47-E47168-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5435299604, + "lat": 48.5510902, + "lon": -3.1480152, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "socket:type2": "yes", + "socket:type2:output": "43.5" + } + }, + { + "type": "node", + "id": 5436825888, + "lat": 46.0686925, + "lon": 6.5612767, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74081*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5437732499, + "lat": 43.5785779, + "lon": 3.9581308, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5440699487, + "lat": 44.5673644, + "lon": 6.4966171, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05046*F", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 5443001105, + "lat": 47.3586324, + "lon": -1.9398196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44195A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5443125793, + "lat": 44.8261351, + "lon": -0.6248772, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Bluecub" + } + }, + { + "type": "node", + "id": 5445215742, + "lat": 43.9172532, + "lon": 4.8879575, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5452052104, + "lat": 48.9740597, + "lon": 2.2054803, + "tags": { + "addr:city": "Comeilles en Parisis", + "addr:postcode": "95240", + "addr:street": "Rue Emy-Les-Prés", + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5452263892, + "lat": 44.3040253, + "lon": 4.7400025, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*P58D280159609B", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 5456390951, + "lat": 49.2788416, + "lon": -0.2507188, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET147", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5459596061, + "lat": 43.8300083, + "lon": 5.7966316, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Bas Saint Sépulcre SDE04", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref": "FR*S04*P04112*A", + "ref:EU:EVSE": "FR*EBN*PTUDR0E6GUP", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5459596062, + "lat": 43.8293623, + "lon": 5.8051227, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Hopital SDE04", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref": "FR*S04*P04112*D", + "ref:EU:EVSE": "FR*EBN*PQLKVQH0DOT", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5459600653, + "lat": 44.0430223, + "lon": 5.7811914, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04178*A", + "ref:EU:EVSE": "FR*EBN*PLPQNUV", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5460381023, + "lat": 48.8421325, + "lon": -3.2288888, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5460542078, + "lat": 49.1870933, + "lon": -0.3603608, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Rue du Vaugueux", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET254", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 5460610028, + "lat": 45.2169346, + "lon": 0.7275864, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24098*001", + "ref:EU:EVSE": "FR*S24*PMB24*26", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5462047217, + "lat": 45.9423942, + "lon": 6.6278522, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74256*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5467753289, + "lat": 48.6515115, + "lon": -2.0081069, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5471104913, + "lat": 43.9793858, + "lon": 4.9069115, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "EVLink" + } + }, + { + "type": "node", + "id": 5477453154, + "lat": 46.0191165, + "lon": 6.9198998, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74290*A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 5477578279, + "lat": 46.0886615, + "lon": 6.5832433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74064*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5479658887, + "lat": 45.419863, + "lon": 0.8405675, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*107", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5501674527, + "lat": 47.4871494, + "lon": -0.524753, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Europe - Rue de L'Écriture", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*013", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5501789182, + "lat": 44.934819, + "lon": 4.8945051, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26362*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5501789183, + "lat": 44.9288799, + "lon": 4.8835368, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26362*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5502599466, + "lat": 47.9541014, + "lon": -2.5460551, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "opendata56@morbihan-energies.fr", + "fee": "yes", + "moped": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Place d'Alzey", + "network": "Morbihan Energies", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S56*PLBRBBU", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5503706248, + "lat": 46.9451582, + "lon": 0.1122893, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B003", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B003", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5509422061, + "lat": 44.657464, + "lon": 1.5678759, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "Fastned Aire-jardin de Causses du Lot", + "note": "Avec emplacement PMR", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "8", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com/fr/emplacements" + } + }, + { + "type": "node", + "id": 5512472414, + "lat": 48.5669545, + "lon": -3.6055514, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BUSS", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 5512514462, + "lat": 45.6393685, + "lon": 5.8916037, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5519039830, + "lat": 47.8768747, + "lon": -4.1161588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ADAH", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5521815016, + "lat": 43.8364926, + "lon": 5.986398, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04230*A", + "ref:EU:EVSE": "FR*EBN*PACHVAB", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5524935360, + "lat": 47.1897507, + "lon": -0.3019041, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "0,33 cts le kwh.", + "fee": "yes", + "mapillary": "541266260196997", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "note": "A ce jour, 16 août 2022, seul les badges RFID sont pris en charge. Paiement CB par contact HS.", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49125*003", + "socket:chademo": "1", + "socket:type2": "2", + "socket:type2_combo": "1", + "socket:typee": "2", + "survey:date": "2018-07-28", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5525014937, + "lat": 49.0203803, + "lon": 2.163275, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 5528669385, + "lat": 47.7040273, + "lon": 3.6338715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89478*A*B1*G;FR*S89*E89478*A*B1*D", + "charging_station:ref": "FR*S89*P89478*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22", + "ref:EU:EVSE": "FR*S89*P89478*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669386, + "lat": 47.6607755, + "lon": 3.7320001, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89441*A*B1*G", + "charging_station:ref": "FR*S89*P89441*A", + "fee": "yes", + "fixme": "localisation à revoir !", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50.00", + "ref:EU:EVSE": "FR*S89*P89441*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669387, + "lat": 47.5811752, + "lon": 3.1553975, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "charging_point:ref": "FR*S89*E89420*B*B1*D;FR*S89*E89420*B*B1*G;FR*S89*E89420*B*B2*G;FR*S89*E89420*B*B2*D;FR*S89*E89420*B*B3*G", + "charging_station:ref": "FR*S89*P89420*B", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00;43.00", + "ref:EU:EVSE": "FR*S89*P89420*B", + "socket:chademo": "1", + "socket:type2": "5", + "socket:type2_combo": "1", + "socket:typee": "4", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669388, + "lat": 47.549623, + "lon": 3.1816156, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89420*A*B1*D;FR*S89*E89420*A*B1*G", + "charging_station:ref": "FR*S89*P89420*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89420*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669389, + "lat": 47.8475195, + "lon": 4.0849344, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89407*A*B1*G;FR*S89*E89407*A*B1*D", + "charging_station:ref": "FR*S89*P89407*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89407*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669390, + "lat": 48.1966738, + "lon": 3.2700205, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89387*G*B1*G", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50.00", + "ref:EU:EVSE": "FR*S89*P89387*G", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669391, + "lat": 48.1974747, + "lon": 3.2682177, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89387*F*B1*D;FR*S89*E89387*F*B1*G", + "charging_station:ref": "FR*S89*P89387*F", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89387*F", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669392, + "lat": 48.195586, + "lon": 3.28408, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89387*D*B1*G;FR*S89*E89387*D*B1*D", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89387*D", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669393, + "lat": 48.197436, + "lon": 3.279557, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89387*C*B1*D;FR*S89*E89387*C*B1*G", + "fee": "yes", + "fixme": "localisation à revoir !", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89387*C", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669394, + "lat": 47.9125884, + "lon": 3.3592683, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89384*A*B1*D;FR*S89*E89384*A*B1*G", + "charging_station:ref": "FR*S89*P89384*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89384*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669395, + "lat": 47.5152984, + "lon": 3.9397698, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89378*A*B1*D;FR*S89*E89378*A*B1*G", + "charging_station:ref": "FR*S89*P89378*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89378*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669396, + "lat": 48.1793004, + "lon": 3.0966462, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89370*A*B1*D;FR*S89*E89370*A*B1*G", + "charging_station:ref": "FR*S89*P89370*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89370*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669397, + "lat": 48.0017105, + "lon": 3.7283349, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89345*B*B1*G", + "charging_station:ref": "FR*S89*P89345*B", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50", + "ref:EU:EVSE": "FR*S89*P89345*B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669398, + "lat": 47.9971482, + "lon": 3.7330274, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89345*A*B1*D;FR*S89*E89345*A*B1*G", + "charging_station:ref": "FR*S89*P89345*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89345*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669399, + "lat": 47.7440482, + "lon": 3.6466797, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89337*A*B1*G;FR*S89*E89337*A*B1*D", + "charging_station:ref": "FR*S89*P89337*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22", + "ref:EU:EVSE": "FR*S89*P89337*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669400, + "lat": 48.3051809, + "lon": 3.0502651, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89332*A*B1*G;FR*S89*E89332*A*B1*D", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89332*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669401, + "lat": 48.1521913, + "lon": 3.3098352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89326*A*B1*D;FR*S89*E89326*A*B1*G", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89326*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5528669402, + "lat": 47.7454238, + "lon": 2.8816611, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89324*A*B1*D;FR*S89*E89324*A*B1*G", + "charging_station:ref": "FR*S89*P89324*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89324*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309", + "voltage": "22.00" + } + }, + { + "type": "node", + "id": 5528669404, + "lat": 47.3680033, + "lon": 3.9962152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89318*A*B1*G", + "charging_station:ref": "FR*S89*P89318*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89318*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669405, + "lat": 47.6613861, + "lon": 3.4172094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89283*A*B1*D;FR*S89*E89283*A*B1*G", + "charging_station:ref": "FR*S89*P89283*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89283*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669406, + "lat": 47.952386, + "lon": 3.5724664, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89282*A*B1*G;FR*S89*E89282*A*B1*D", + "charging_station:ref": "FR*S89*P89282*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89282*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669407, + "lat": 47.6965847, + "lon": 3.9930374, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89279*A*B1*D;FR*S89*E89279*A*B1*G", + "charging_station:ref": "FR*S89*P89279*A", + "fee": "yes", + "image": "https://i.imgur.com/24x8NVG.jpg", + "maxstay": "unlimited", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "no", + "payment:cash": "no", + "payment:membership_card": "yes", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89279*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669408, + "lat": 48.0426616, + "lon": 3.7930767, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89276*A*B1*D;FR*S89*E89276*A*B1*G", + "charging_station:ref": "FR*S89*P89276*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89276*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669409, + "lat": 47.8479599, + "lon": 3.5803623, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_point:ref": "FR*S89*E89263*A*B1*G", + "charging_station:ref": "FR*S89*P89263*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "50.00", + "ref:EU:EVSE": "FR S89 P89263 A", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669410, + "lat": 47.9625041, + "lon": 3.514998, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89257*B*B1*G;FR*S89*E89257*B*B1*D", + "charging_station:ref": "FR*S89*P89257*B", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89257*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669411, + "lat": 48.1790727, + "lon": 3.3389883, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89239*A*B1*D;FR*S89*E89239*A*B1*G", + "charging_station:ref": "FR*S89*P89239*A", + "fee": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "power": "22.00", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669412, + "lat": 47.8000318, + "lon": 3.4176158, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89228*A*B1*G;FR*S89*E89228*A*B1*D", + "charging_station:ref": "FR*S89*P89228*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89228*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669413, + "lat": 47.895235, + "lon": 3.7579626, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89227*A*B1*G;FR*S89*E89227*A*B1*D", + "charging_station:ref": "FR*S89*P89227*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89227*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669414, + "lat": 47.683633, + "lon": 3.3753942, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89221*A*B1*G;FR*S89*E89221*A*B1*D", + "charging_station:ref": "FR*S89*P89221*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89221*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669415, + "lat": 47.9640494, + "lon": 3.4837457, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89218*A*B1*D;FR*S89*E89218*A*B1*G", + "charging_station:ref": "FR*S89*P89218*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89218*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669416, + "lat": 47.5847345, + "lon": 4.0045555, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89204*A*B1*G;FR*S89*E89204*A*B1*D", + "charging_station:ref": "FR*S89*P89204*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89204*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669417, + "lat": 47.7146605, + "lon": 3.666805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89202*A*B1*D;FR*S89*E89202*A*B1*G", + "charging_station:ref": "FR*S89*P89202*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22", + "ref:EU:EVSE": "FR*S89*P89202*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669418, + "lat": 47.9040212, + "lon": 3.6277829, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89201*A*B1*D;FR*S89*E89201*A*B1*G", + "charging_station:ref": "FR*S89*P89201*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89201*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669419, + "lat": 47.9288693, + "lon": 3.6095265, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89200*A*B1*G", + "charging_station:ref": "FR*S89*P89200*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50.00", + "ref:EU:EVSE": "FR*S89*P89200*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528669420, + "lat": 47.8689116, + "lon": 3.451724, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89167*A*B1*G;FR*S89*E89167*A*B1*D", + "charging_station:ref": "FR*S89*P89167*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89167*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671621, + "lat": 47.98425, + "lon": 3.5755278, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89156*A*B1*D;FR*S89*E89156*A*B1*G", + "charging_station:ref": "FR*S89*P89156*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89156*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671622, + "lat": 47.5472663, + "lon": 3.4199113, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89148*A*B1*D;FR*S89*E89148*A*B1*G", + "charging_station:ref": "FR*S89*P89148*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89148 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671623, + "lat": 47.8560081, + "lon": 4.2116609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89131*A*B1*D;FR*S89*E89131*A*B1*G", + "charging_station:ref": "FR*S89*P89131*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89131*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671624, + "lat": 47.614472, + "lon": 3.4997946, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89125*A*B1*G;FR*S89*E89125*A*B1*D", + "charging_station:ref": "FR*S89*P89125*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89125*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309", + "wikimedia_commons": "File:Courson-les-Carrières-FR-89-pour bagnoles électronucléaires-01.jpg" + } + }, + { + "type": "node", + "id": 5528671625, + "lat": 48.3394837, + "lon": 3.1657181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89124*A*B1*G;FR*S89*E89124*A*B1*D", + "charging_station:ref": "FR*S89*P89124*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89124*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671626, + "lat": 47.5255618, + "lon": 3.542423, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89119*A*B1*G;FR*S89*E89119*A*B1*D", + "charging_station:ref": "FR*S89*P89119*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89119*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671627, + "lat": 48.2000924, + "lon": 3.4740589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89107*A*B1*G;FR*S89*E89107*A*B1*D", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22", + "ref:EU:EVSE": "FR*S89*P89107*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671628, + "lat": 48.1995417, + "lon": 2.9927655, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89100*A*B1*G", + "charging_station:ref": "FR*S89*P89100*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "43.00", + "ref:EU:EVSE": "FR*S89*P89100*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671629, + "lat": 47.8993505, + "lon": 3.5618549, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89096*A*B1*G;FR*S89*E89096*A*B1*D", + "charging_station:ref": "FR*S89*P89096*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89096*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671630, + "lat": 47.8869724, + "lon": 3.0951741, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89086*A*B1*D;FR*S89*E89086*A*B1*G", + "charging_station:ref": "FR*S89*P89086*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89086*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671631, + "lat": 47.8306874, + "lon": 3.4596004, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89083*A*B2*D;FR*S89*E89083*A*B2*G", + "charging_station:ref": "FR*S89*P89083*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89083*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671632, + "lat": 47.9513602, + "lon": 3.4399036, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89075*A*B1*G;FR*S89*E89075*A*B1*D", + "charging_station:ref": "FR*S89*P89075*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89075*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671633, + "lat": 47.7785101, + "lon": 3.0775959, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89073*A*B1*D;FR*S89*E89073*A*B1*G", + "charging_station:ref": "FR*S89*P89073*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89073*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671634, + "lat": 47.8162228, + "lon": 3.7984934, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89068*A*B1*G;FR*S89*E89068*A*B1*D", + "charging_station:ref": "FR*S89*P89068*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89068*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671635, + "lat": 48.1324339, + "lon": 3.4868757, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89066*A*B1*D;FR*S89*E89066*A*B1*G", + "charging_station:ref": "FR*S89*P89066*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89066*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671636, + "lat": 47.9743415, + "lon": 3.2893705, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89063*A*B1*G;FR*S89*E89063*A*B1*D", + "charging_station:ref": "FR*S89*P89063*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89063*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671637, + "lat": 48.0197817, + "lon": 3.5138398, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89059*A*B1*G;FR*S89*E89059*A*B1*D", + "charging_station:ref": "FR*S89*P89059*A", + "fee": "no", + "motorcar": "yes", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SDEY Syndicat Départemental d'Énergies de l'Yonne", + "power": "22.00", + "ref:EU:EVSE": "FR S89 P89059 A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671638, + "lat": 47.8184832, + "lon": 3.7232065, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89034*A*B1*D;FR*S89*E89034*A*B1*G", + "charging_station:ref": "FR*S89*P89034*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89034*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671639, + "lat": 48.0911063, + "lon": 3.597895, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_point:ref": "FR*S89*E89014*A*B1*G;FR*S89*E89014*A*B1*D", + "charging_station:ref": "FR*S89*P89014*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "E/F + T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "22.00", + "ref:EU:EVSE": "FR*S89*P89014*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528671640, + "lat": 47.8749159, + "lon": 3.3504141, + "tags": { + "amenity": "charging_station", + "charging_point:ref": "FR*S89*E89003*A*B1*G", + "charging_station:ref": "FR*S89*P89003*A", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "note:type_prise": "T2", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "power": "50.00", + "ref:EU:EVSE": "FR*S89*P89003*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "SDEY - data.gouv.fr 20180309" + } + }, + { + "type": "node", + "id": 5528784767, + "lat": 44.7907345, + "lon": 6.5565548, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05006*A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 5529283489, + "lat": 47.6277098, + "lon": 6.8603383, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "Payable par l'application smartphone, site web paynow.sodetrel.fr", + "motorcar": "yes", + "name": "E. Leclerc Belfort", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*77*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5529299298, + "lat": 47.6420277, + "lon": 6.8817598, + "tags": { + "amenity": "charging_station", + "fixme": "A placer dans la concession renault" + } + }, + { + "type": "node", + "id": 5529299299, + "lat": 47.6273641, + "lon": 6.8622065, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5529314709, + "lat": 47.5749316, + "lon": 6.8709558, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5529314710, + "lat": 47.6411259, + "lon": 6.9161457, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5531520746, + "lat": 43.4938105, + "lon": -1.4523966, + "tags": { + "access": "customers", + "addr:city": "Bayonne", + "addr:country": "FR", + "addr:postcode": "64100", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Bayonne Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/bayonnesupercharger" + } + }, + { + "type": "node", + "id": 5531520748, + "lat": 43.3322583, + "lon": -0.3588957, + "tags": { + "access": "customers", + "addr:city": "Pau", + "addr:country": "FR", + "addr:housenumber": "2", + "addr:postcode": "64000", + "addr:street": "Rue Suzanne Lenglen", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,38 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Pau Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/pausupercharger" + } + }, + { + "type": "node", + "id": 5531520772, + "lat": 49.1639477, + "lon": -0.4247405, + "tags": { + "access": "customers", + "addr:city": "Bretteville-sur-Odon", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "14760", + "addr:street": "Avenue du Fresne", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Caen Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/caensupercharger" + } + }, + { + "type": "node", + "id": 5531520784, + "lat": 46.6703706, + "lon": 0.3626481, + "tags": { + "access": "customers", + "addr:city": "Chasseneuil-du-Poitou", + "addr:country": "FR", + "addr:postcode": "86360", + "addr:street": "Avenue René Monory", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Poitiers Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/poltierssupercharger" + } + }, + { + "type": "node", + "id": 5531520796, + "lat": 47.7880023, + "lon": -3.3312533, + "tags": { + "access": "yes", + "addr:city": "Caudan", + "addr:country": "FR", + "addr:housenumber": "758", + "addr:postcode": "56850", + "addr:street": "Rue Pierre Landais", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Lorient Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/lorientsupercharger" + } + }, + { + "type": "node", + "id": 5531520797, + "lat": 48.4934664, + "lon": -2.7227131, + "tags": { + "access": "yes", + "addr:city": "Saint-Brieuc", + "addr:country": "FR", + "addr:housenumber": "5", + "addr:postcode": "22360", + "addr:street": "Rue de la Landelle", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Brieuc Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/saintbrieucsupercharger" + } + }, + { + "type": "node", + "id": 5531520798, + "lat": 48.0820562, + "lon": -1.6843414, + "tags": { + "access": "customers", + "addr:city": "Rennes", + "addr:country": "FR", + "addr:postcode": "35200", + "addr:street": "Allée d'Ukraine", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Rennes Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/rennessupercharger" + } + }, + { + "type": "node", + "id": 5531520800, + "lat": 48.0417282, + "lon": 0.175399, + "tags": { + "access": "customers", + "addr:city": "La Chapelle St Aubin", + "addr:country": "FR", + "addr:postcode": "72650", + "addr:street": "ZAC du Moulin aux Moines, Route d'Alençon", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla, Inc.", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Le Mans Supercharger", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/lemanssupercharger" + } + }, + { + "type": "node", + "id": 5531520806, + "lat": 47.9488838, + "lon": 1.8682981, + "tags": { + "access": "customers", + "addr:city": "Saran", + "addr:country": "FR", + "addr:postcode": "45770", + "addr:street": "Chemin des Sablons", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Orléans Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/orleanssupercharger" + } + }, + { + "type": "node", + "id": 5531520807, + "lat": 48.9250922, + "lon": 1.996562, + "tags": { + "access": "customers", + "addr:city": "Orgeval", + "addr:country": "FR", + "addr:housenumber": "482", + "addr:postcode": "78630", + "addr:street": "Route des 40 Sous", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla, Inc.", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Orgeval Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/oregevalsupercharger" + } + }, + { + "type": "node", + "id": 5531520808, + "lat": 48.754439, + "lon": 2.3509763, + "tags": { + "access": "customers", + "addr:city": "Rungis", + "addr:housenumber": "1", + "addr:postcode": "94150", + "addr:street": "Rue du Pont des Halles", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "description": "Take a ticket at the entrance of the parking. First 3 hours are free.", + "fee": "yes", + "motorcar": "yes", + "name": "Rungis Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/rungissupercharger" + } + }, + { + "type": "node", + "id": 5531520809, + "lat": 48.8308653, + "lon": 2.6780288, + "tags": { + "access": "customers", + "addr:city": "Collégien", + "addr:country": "FR", + "addr:housenumber": "2", + "addr:postcode": "77090", + "addr:street": "Allée des Portes de la Forêt", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Marne-la-Vallée Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/marnelavalleesupercharger" + } + }, + { + "type": "node", + "id": 5531520810, + "lat": 49.8634866, + "lon": 2.2781397, + "tags": { + "access": "customers", + "addr:city": "Dury", + "addr:street": "Route d'Amiens", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Amiens Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla Supercharger", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/amienssupercharger" + } + }, + { + "type": "node", + "id": 5531522030, + "lat": 50.3367361, + "lon": 3.4559841, + "tags": { + "access": "yes", + "addr:city": "Rouvignies", + "addr:country": "FR", + "addr:postcode": "59220", + "addr:street": "Rue de Maugré", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Valenciennes Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/valenciennessupercharger" + } + }, + { + "type": "node", + "id": 5531522031, + "lat": 49.7871305, + "lon": 3.3355245, + "tags": { + "access": "customers", + "addr:city": "Urvillers", + "addr:postcode": "02690", + "addr:street": "A26 - Aire d'Urvillers", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "charging_station:output": "150 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire d'Urvillers Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedurvillerssupercharger" + } + }, + { + "type": "node", + "id": 5531522043, + "lat": 48.9919749, + "lon": 4.2453333, + "tags": { + "access": "customers", + "addr:city": "Matougues", + "addr:country": "FR", + "addr:housenumber": "8", + "addr:postcode": "51510", + "addr:street": "Route Nationale", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Châlons-en-Champagne Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/matogugeussupercharger" + } + }, + { + "type": "node", + "id": 5531522045, + "lat": 48.0576974, + "lon": 4.9604949, + "tags": { + "access": "customers", + "addr:city": "Châteauvillain", + "addr:street": "A5 - Aire de Châteauvillain-Orges", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Châteauvillain - Orges Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chateauvillainorgessupercharger" + } + }, + { + "type": "node", + "id": 5531522050, + "lat": 48.6383307, + "lon": 6.1843103, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Nancy Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/nancysupercharger" + } + }, + { + "type": "node", + "id": 5531522059, + "lat": 47.991452, + "lon": 5.5126677, + "tags": { + "access": "customers", + "addr:city": "Val-de-Meuse", + "addr:country": "FR", + "addr:postcode": "52140", + "addr:street": "D132", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Val-de-Meuse Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "16", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/valdemeusesupercharger" + } + }, + { + "type": "node", + "id": 5531522060, + "lat": 48.5340397, + "lon": 7.702049, + "tags": { + "access": "customers", + "addr:city": "Ostwald", + "addr:country": "FR", + "addr:postcode": "67400", + "addr:street": "Rue du 23 Novembre", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Strasbourg Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/strasbourgsupercharger" + } + }, + { + "type": "node", + "id": 5531522061, + "lat": 45.2656681, + "lon": 5.8764383, + "tags": { + "access": "customers", + "addr:city": "Bernin", + "addr:country": "FR", + "addr:housenumber": "134", + "addr:postcode": "38190", + "addr:street": "Chemin des Fontaines", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Grenoble Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/grenoblesupercharger" + } + }, + { + "type": "node", + "id": 5531522068, + "lat": 45.5931102, + "lon": 5.8981793, + "tags": { + "access": "customers", + "addr:city": "Chambéry", + "addr:country": "FR", + "addr:housenumber": "1097", + "addr:postcode": "73000", + "addr:street": "Avenue des Landiers", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Chambéry Supercharger", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chamberysupercharger" + } + }, + { + "type": "node", + "id": 5531522070, + "lat": 46.4961489, + "lon": 5.3104734, + "tags": { + "access": "customers", + "addr:city": "Dommartin-lès-Cuiseaux", + "addr:street": "A39 - Aire du Poulet de Bresse", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire du Poulet de Bresse Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedupouletdebressesupercharger" + } + }, + { + "type": "node", + "id": 5531522071, + "lat": 46.3466546, + "lon": 4.8490043, + "tags": { + "access": "customers", + "addr:city": "Sancé", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "71000", + "addr:street": "Boulevard du Général de Gaulle", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Mâcon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "20", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/maconfrsupercharger" + } + }, + { + "type": "node", + "id": 5531548121, + "lat": 44.8341986, + "lon": -0.6809619, + "tags": { + "access": "customers", + "addr:city": "Merignac", + "addr:country": "FR", + "addr:housenumber": "80", + "addr:postcode": "33700", + "addr:street": "Avenue J. F. Kennedy", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Bordeaux Merignac Supercharger", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/bordeauxmerignacsupercharger" + } + }, + { + "type": "node", + "id": 5531548122, + "lat": 43.1211424, + "lon": 5.8508608, + "tags": { + "access": "customers", + "addr:city": "La Seyne-sur-Mer", + "addr:country": "FR", + "addr:housenumber": "80", + "addr:postcode": "83500", + "addr:street": "Chemin de la Capellane", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Toulon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/toulonsupercharger" + } + }, + { + "type": "node", + "id": 5531548123, + "lat": 44.2258394, + "lon": 5.9123155, + "tags": { + "access": "yes", + "addr:city": "Sisteron", + "addr:country": "FR", + "addr:postcode": "04200", + "addr:street": "Allée des Tilleuls", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Sisteron Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/sisteronsupercharger" + } + }, + { + "type": "node", + "id": 5531548124, + "lat": 43.5106478, + "lon": 5.4564393, + "tags": { + "access": "customers", + "addr:city": "Aix-en-Provence", + "addr:postcode": "13100", + "addr:street": "Hotel Novotel - Avenue Arc de Meyran", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aix-en-Provence Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/aixenprovencesupercharger" + } + }, + { + "type": "node", + "id": 5531548125, + "lat": 43.5119793, + "lon": 5.466397, + "tags": { + "access": "customers", + "addr:city": "Aix-en-Provence", + "addr:postcode": "13100", + "addr:street": "Hotel Ibis - Chemin des Infirmeries", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aix-en-Provence - Val de l'Arc Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/aixenprovencevaldelarcsupercharger" + } + }, + { + "type": "node", + "id": 5531548134, + "lat": 43.8646353, + "lon": 3.3132631, + "tags": { + "access": "customers", + "addr:city": "Le Caylar", + "addr:postcode": "34520", + "addr:street": "A75 - Aire du Caylar", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla, Inc.", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire du Caylar Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/aireducaylarsupercharger" + } + }, + { + "type": "node", + "id": 5531833634, + "lat": 43.9029512, + "lon": 3.5146588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30040*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5532145766, + "lat": 46.5624489, + "lon": 0.050699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref": "B007", + "ref:EU:EVSE": "FR*S86*PSORE*B007", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5534141535, + "lat": 47.383392, + "lon": 0.7617098, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1724;FR*S37*E1725", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141536, + "lat": 47.357802, + "lon": 0.814847, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1698;FR*S37*E1705", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141537, + "lat": 47.288116, + "lon": 0.735515, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1385;FR*S37*E1330", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141538, + "lat": 47.257093, + "lon": 0.840579, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2782;FR*S37*E2783", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141539, + "lat": 47.2891435, + "lon": 0.9871851, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1579;FR*S37*E1577", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141540, + "lat": 47.2431938, + "lon": 0.6971425, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1320;FR*S37*E1319", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141541, + "lat": 47.073438, + "lon": 0.667944, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1317;FR*S37*E1318", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141542, + "lat": 47.498193, + "lon": 0.578625, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1315;FR*S37*E1316", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141543, + "lat": 47.202358, + "lon": 0.142785, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1312;FR*S37*E1313", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141544, + "lat": 47.443652, + "lon": 0.578016, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1326;FR*S37*E1325", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141545, + "lat": 47.285682, + "lon": 0.3091129, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1323;FR*S37*E1324", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141546, + "lat": 47.2844906, + "lon": 0.1258675, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1306;FR*S37*E1307", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141547, + "lat": 47.5859161, + "lon": 0.7778569, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1582;FR*S37*E1581", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141548, + "lat": 47.082539, + "lon": 1.034772, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1322;FR*S37*E1321", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141549, + "lat": 47.057907, + "lon": 1.101471, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2781;FR*S37*E2780", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141550, + "lat": 47.4189325, + "lon": 0.6551236, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1308;FR*S37*E1309", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141551, + "lat": 47.615629, + "lon": 0.475266, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1384;FR*S37*E1383", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141552, + "lat": 47.22798, + "lon": 0.769341, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1382;FR*S37*E1304", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141553, + "lat": 47.496099, + "lon": 0.6313374, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2687;FR*S37*E2686", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141554, + "lat": 47.246675, + "lon": 0.542878, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1302;FR*S37*E1303", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141555, + "lat": 47.514614, + "lon": 0.648934, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1300;FR*S37*E1301", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141556, + "lat": 47.267778, + "lon": 0.352268, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1830;FR*S37*E1831", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141557, + "lat": 47.228092, + "lon": 0.914723, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1352;FR*S37*E1299", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141558, + "lat": 47.4439396, + "lon": 0.9906576, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1298;FR*S37*E1381", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141559, + "lat": 46.9218098, + "lon": 0.9195071, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1270;FR*S37*E1271", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141560, + "lat": 47.103448, + "lon": 0.477806, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1295;FR*S37*E1380", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141561, + "lat": 47.441886, + "lon": 0.745838, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1471;FR*S37*E1469", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141562, + "lat": 47.4561028, + "lon": 0.7108091, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1341;FR*S37*E1342", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141563, + "lat": 47.421157, + "lon": 0.890957, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1646;FR*S37*E1647", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141564, + "lat": 47.6027114, + "lon": 0.5937733, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1292;FR*S37*E1291", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141565, + "lat": 47.547449, + "lon": 0.547499, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2948;FR*S37*E2947", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://modulo-energies.fr" + } + }, + { + "type": "node", + "id": 5534141566, + "lat": 47.51268, + "lon": 0.910568, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2774;FR*S37*E2575", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141567, + "lat": 47.4194066, + "lon": 0.9772072, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1832;FR*S37*E1841", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141568, + "lat": 47.422511, + "lon": 0.968669, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1696;FR*S37*E1697", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141569, + "lat": 47.4584641, + "lon": 0.6726884, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1285;FR*S37*E1286", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141570, + "lat": 47.448616, + "lon": 0.650692, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1283;FR*S37*E1284", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141571, + "lat": 47.4370229, + "lon": 0.6379426, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1261;FR*S37*E1260", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141572, + "lat": 46.98139, + "lon": 0.488611, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1281;FR*S37*E1282", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141573, + "lat": 47.0532488, + "lon": 0.5828767, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1278;FR*S37*E1277", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141574, + "lat": 47.383873, + "lon": 0.556317, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1340;FR*S37*E1339", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141575, + "lat": 47.617768, + "lon": 0.650162, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1275;FR*S37*E1276", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141576, + "lat": 47.128864, + "lon": 0.995288, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1351;FR*S37*E1274", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141577, + "lat": 47.042476, + "lon": 0.820331, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2579;FR*S37*E2580", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141578, + "lat": 47.350501, + "lon": 0.665139, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1252;FR*S37*E1251", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141579, + "lat": 46.9483281, + "lon": 0.4139203, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1337;FR*S37*E1349", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141580, + "lat": 47.282613, + "lon": 0.266909, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1250;FR*S37*E1378", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141581, + "lat": 46.9202916, + "lon": 0.8033683, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1267;FR*S37*E1266", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141582, + "lat": 47.392532, + "lon": 0.196334, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2483;FR*S37*E2482", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141583, + "lat": 47.1818306, + "lon": 1.0963448, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1348;FR*S37*E1249", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141584, + "lat": 47.3141515, + "lon": 1.084441, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2771;FR*S37*E2770", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141585, + "lat": 47.404075, + "lon": 0.62502, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1377;FR*S37*E1376", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141586, + "lat": 47.281329, + "lon": 1.111411, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1737;FR*S37*E1738", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141587, + "lat": 47.054163, + "lon": 0.623478, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1245;FR*S37*E1244", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141588, + "lat": 47.346016, + "lon": 0.950848, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1242;FR*S37*E1243", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141589, + "lat": 46.974434, + "lon": 0.700201, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1241;FR*S37*E1253", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141590, + "lat": 47.425562, + "lon": 0.39297, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1564;FR*S37*E1563", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141591, + "lat": 47.332938, + "lon": 1.046231, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1692;FR*S37*E1691", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141592, + "lat": 47.3462196, + "lon": 0.4585114, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "name": "Borne de recharge", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1230;FR*S37*E1231", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141593, + "lat": 47.2599856, + "lon": 0.9304397, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1228;FR*S37*E1229", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141594, + "lat": 47.169635, + "lon": 0.239361, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1645;FR*S37*E1644", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141595, + "lat": 47.254977, + "lon": 0.462365, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1223;FR*S37*E1222", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141596, + "lat": 47.587438, + "lon": 0.902142, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1843;FR*S37*E1842", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141597, + "lat": 47.595864, + "lon": 0.912801, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1700;FR*S37*E1704", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141598, + "lat": 47.54762, + "lon": 0.319269, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1447;FR*S37*E1446", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141599, + "lat": 46.913225, + "lon": 0.985279, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1690;FR*S37*E1702", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141600, + "lat": 47.4334772, + "lon": 1.030172, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1570;FR*S37*E1558", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141601, + "lat": 47.3183129, + "lon": 0.4272244, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1708;FR*S37*E1699", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141602, + "lat": 47.4714643, + "lon": 0.7009435, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1373;FR*S37*E1374", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141603, + "lat": 47.3492763, + "lon": 0.6971213, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1218;FR*S37*E1219", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141604, + "lat": 47.253068, + "lon": 1.143399, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1371;FR*S37*E1372", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141605, + "lat": 47.257237, + "lon": 1.190249, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1369;FR*S37*E1370", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141606, + "lat": 47.468221, + "lon": 1.059621, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1643;FR*S37*E1648", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141607, + "lat": 47.027467, + "lon": 1.081558, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1467;FR*S37*E1468", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141608, + "lat": 46.841416, + "lon": 0.887463, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2681;FR*S37*E2692", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141609, + "lat": 47.2785541, + "lon": 0.1684848, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1209;FR*S37*E1208", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141610, + "lat": 46.831853, + "lon": 0.961663, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1366;FR*S37*E1365", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141611, + "lat": 47.328019, + "lon": 0.995569, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1388;FR*S37*E1387", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141612, + "lat": 47.5696565, + "lon": 0.6706443, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2577;FR*S37*E2578", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141613, + "lat": 47.350406, + "lon": 0.844593, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "fixme": "localisation à revoir !", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1362;FR*S37*E1386", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141614, + "lat": 47.5376816, + "lon": 0.9873986, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1198;FR*S37*E1199", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141615, + "lat": 47.273001, + "lon": 0.598126, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E2679;FR*S37*E2678", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141616, + "lat": 47.411565, + "lon": 0.988131, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1186;FR*S37*E1184", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5534141617, + "lat": 47.451294, + "lon": 0.445236, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E1444;FR*S37*E1445", + "source": "SIEIL37 - data.gouv.fr - 2017-03-21", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 5535564609, + "lat": 44.6663676, + "lon": 4.1112734, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07153*A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "voltage": "500", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5535605861, + "lat": 44.5391565, + "lon": 4.4183886, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07348*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5535614025, + "lat": 44.4478574, + "lon": 4.4182354, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07126*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5536292940, + "lat": 48.2669662, + "lon": 5.8633382, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Relais Lorraine les Rappes", + "note": "A31", + "opening_hours": "24/7", + "operator": "Total Energies", + "payment:website": "yes", + "ref:EU:EVSE": "FR*E04*P*OAZS*64*_*_*_" + } + }, + { + "type": "node", + "id": 5536292941, + "lat": 48.2688418, + "lon": 5.8598476, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Lorraine Sandaucourt-la-Trelle", + "network": "Corri-dor", + "note": "A31", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*34*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292942, + "lat": 49.1200087, + "lon": 6.2196946, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "description": "Rue du Général Metman", + "fee": "yes", + "motorcar": "yes", + "name": "Intermarché Metz", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*137*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292943, + "lat": 48.9746233, + "lon": 7.0642525, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Keskastel-Ouest", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*32*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292944, + "lat": 48.9721923, + "lon": 7.0690108, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Keskastel-Est", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*50*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292945, + "lat": 48.7243936, + "lon": 7.6913361, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Brumath-Ouest", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*168*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292946, + "lat": 48.7208205, + "lon": 7.6957889, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Brumath-Est", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*172*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292955, + "lat": 47.7592605, + "lon": 7.2936317, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Intermarché Pfastatt", + "network": "Corri-dor", + "note": "route de Thann", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "parking:fee": "no", + "ref:EU:EVSE": "FR*E04*P*OAZS*80*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:schuko": "1", + "socket:schuko:output": "3kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292956, + "lat": 47.3291984, + "lon": 6.128114, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "Payable par l'application smartphone, site web paynow.sodetrel.fr", + "motorcar": "yes", + "name": "Aire de Besançon Champoux", + "network": "Corri-dor", + "note": "A36", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*161*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536292957, + "lat": 47.3258114, + "lon": 6.122071, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "Payable par l'application smartphone, site web paynow.sodetrel.fr", + "motorcar": "yes", + "name": "Aire de Besançon Marchaux", + "network": "Corri-dor", + "note": "A36", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*159*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390261, + "lat": 48.2117066, + "lon": 4.2416036, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Relais Troyes Fresnoy", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Total Energies", + "payment:website": "yes", + "ref:EU:EVSE": "FR*E04*P*OAZS*132*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF042236" + } + }, + { + "type": "node", + "id": 5536390262, + "lat": 48.2139906, + "lon": 4.2413934, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Relais Troyes Fresnoy Le Plessis", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Total Energies", + "payment:website": "yes", + "ref:EU:EVSE": "FR*E04*P*OAZS*131*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078386" + } + }, + { + "type": "node", + "id": 5536390266, + "lat": 47.7894897, + "lon": 3.6714361, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Vernoy Soleil Levant", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*95*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390267, + "lat": 47.7895297, + "lon": 3.6694051, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Vernoy-Chablis", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*96*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390268, + "lat": 47.5043059, + "lon": 4.0372516, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Maison-Dieu", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*42*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390269, + "lat": 48.0555394, + "lon": 4.960948, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*167*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390270, + "lat": 47.3143281, + "lon": 4.4960575, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Chien Blanc", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*38*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390309, + "lat": 47.249995, + "lon": 4.5666459, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Pouilly-en-Auxois", + "network": "Corri-dor", + "note": "Maison de Pays", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*164*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390310, + "lat": 47.4214016, + "lon": 5.1705459, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Dijon-Brognon Ouest", + "network": "Corri-dor", + "note": "A31", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*35*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390311, + "lat": 47.4221737, + "lon": 5.172331, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Dijon-Brognon Est", + "network": "Corri-dor", + "note": "A31", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*11*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390313, + "lat": 47.0320146, + "lon": 5.1097401, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 5536390314, + "lat": 46.4962726, + "lon": 5.3104788, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire du Poulet de Bresse", + "network": "Corri-dor", + "note": "A39", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*68*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390315, + "lat": 46.1417753, + "lon": 4.7675689, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Dracé", + "network": "Corri-dor", + "note": "A7", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*177*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390316, + "lat": 46.135967, + "lon": 4.7672671, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Taponas", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*171*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390317, + "lat": 46.419972, + "lon": 4.8647094, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Mâcon-Saint-Albain", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*60*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390318, + "lat": 46.4181171, + "lon": 4.8656154, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Mâcon-La Salle", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*28*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390319, + "lat": 46.9632025, + "lon": 4.8382235, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Beaune-Merceuil", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*46*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536390320, + "lat": 46.9641029, + "lon": 4.8362496, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Beaune-Tailly", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*57*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536391321, + "lat": 47.8155666, + "lon": 5.2221729, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Langres-Perrogney", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*56*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536391322, + "lat": 47.8146013, + "lon": 5.2254852, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Langres-Noidant", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*59*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536391323, + "lat": 47.9771748, + "lon": 5.4974386, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Montigny le Roi", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "parking:fee": "no", + "ref:EU:EVSE": "FR*E04*P*OAZS*94*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536391324, + "lat": 47.9757457, + "lon": 5.4991623, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Val de Meuse", + "network": "Corri-dor", + "note": "A31", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*97*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450757, + "lat": 49.0092751, + "lon": 2.5367649, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Charles de Gaulle (CDG Paris), Rue de l'Or", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*107*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450759, + "lat": 48.9004139, + "lon": 2.3729839, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aubervilliers Sud", + "network": "Corri-dor", + "note": "Boulevard périphérique", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*105*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450761, + "lat": 48.6491434, + "lon": 2.5629335, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "manufacturer": "Schneider", + "model": "EVLink", + "motorcar": "yes", + "operator": "Izivia", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 5536450762, + "lat": 47.9744681, + "lon": 3.1973823, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de la Réserve", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*179*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450763, + "lat": 47.974095, + "lon": 3.1991979, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de la Couline", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*66*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450764, + "lat": 49.592986, + "lon": 4.5038635, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire des Ardennes", + "network": "Corri-dor", + "note": "A34", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*196*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450765, + "lat": 48.9705911, + "lon": 3.0644359, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire d'Ussy-sur-Marne", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*62*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450766, + "lat": 48.963332, + "lon": 3.052496, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "brand": "Fastned", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Changis-sur-Marne", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*51*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450767, + "lat": 49.0727097, + "lon": 2.5516956, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Vémars Ouest", + "network": "Corri-dor", + "note": "A1", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*27*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450768, + "lat": 49.070986, + "lon": 2.5529371, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Vémars-Est", + "network": "Corri-dor", + "note": "A1", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*24*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450769, + "lat": 49.125829, + "lon": 3.538049, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Tardenois Sud", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*13*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450770, + "lat": 49.1267655, + "lon": 3.5379492, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Tardenois Nord", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*9*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450771, + "lat": 49.2040349, + "lon": 4.0134028, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "E. Leclerc Champfleury", + "network": "Corri-dor", + "note": "Centre commercial Champfleury", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*82*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450772, + "lat": 49.0723859, + "lon": 4.7894276, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*5*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450773, + "lat": 49.0736757, + "lon": 4.7899288, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "network": "Corri-dor", + "note": "A4", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*18*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450774, + "lat": 49.140572, + "lon": 5.409794, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Verdun", + "network": "Corri-dor", + "note": "7 Boulevard de l'Europe", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*98*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450775, + "lat": 48.6600335, + "lon": 5.9082088, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer\nplus de borne existe au coté de celui-ci\nVendeur : Total", + "motorcar": "yes", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR*E04*P*OAZS*65*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450776, + "lat": 48.2647464, + "lon": 2.7218164, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Darvault", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*122*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450777, + "lat": 48.2629374, + "lon": 2.7215726, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Nemours", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*63*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450778, + "lat": 48.4291111, + "lon": 2.9315383, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire des Jonchet-Les Récompenses", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*79*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450779, + "lat": 48.4260258, + "lon": 2.9277044, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire des Jonchet La Grande Parroisse", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*83*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450780, + "lat": 48.2475187, + "lon": 3.5552573, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Villeneuve l'Archevêque", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*26*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536450781, + "lat": 48.2430094, + "lon": 3.5543199, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Villeneuve Vauluisant", + "network": "Corri-dor", + "note": "A5", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*31*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470930, + "lat": 50.826595, + "lon": 2.5858574, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "brand": "izivia", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Saint-Laurent", + "network": "Corri-dor", + "note": "A25", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*29*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470932, + "lat": 50.7928906, + "lon": 1.6871725, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de l'Épître", + "network": "Corri-dor", + "note": "A16", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*20*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470933, + "lat": 50.8621721, + "lon": 1.7349386, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire des 2 Caps", + "network": "Corri-dor", + "note": "A16", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*25*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470934, + "lat": 50.9460775, + "lon": 1.8906797, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Intermarché Calais", + "network": "Corri-dor", + "note": "56 Avenue Antoine de Saint-Exupéry", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*197*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470935, + "lat": 50.5723001, + "lon": 2.3781013, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Rely", + "network": "Corri-dor", + "note": "A26", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*70*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470937, + "lat": 50.1743807, + "lon": 2.8736638, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Saint-Léger", + "network": "Corri-dor", + "note": "A1", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*47*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470938, + "lat": 49.5826278, + "lon": 3.6438373, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Intermarché Laon", + "network": "Corri-dor", + "note": "167 Avenue Pierre Mendès", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*170*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470939, + "lat": 50.6454406, + "lon": 3.0987559, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Intermarché Mons en Baroeil", + "network": "Corri-dor", + "note": "Rue Franklin", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*102*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470945, + "lat": 50.53198, + "lon": 3.0462314, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Phalempin-Ouest", + "network": "Corri-dor", + "note": "A1", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*154*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470946, + "lat": 50.5290438, + "lon": 3.0459772, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Phalempin-Est", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*104*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470947, + "lat": 50.26207, + "lon": 2.8645349, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Wancourt Est", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*176*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470948, + "lat": 50.1945573, + "lon": 3.2112211, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Intermarché Cambrai", + "network": "Corri-dor", + "note": "Rue du Riot des Saules", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*198*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536470949, + "lat": 48.8290586, + "lon": 2.6431509, + "tags": { + "access": "yes", + "addr:city": "Croissy-Beaubourg", + "addr:housenumber": "1", + "addr:postcode": "77183", + "addr:street": "Rond-Point Roccasecca", + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Intermarché Croissy-Beaubourg", + "opening_hours": "24/7", + "ref:EU:EVSE": "FR*E04*P*OAZS*188*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483522, + "lat": 43.5419689, + "lon": 6.78594, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de l'Estérel", + "network": "SODETREL MOBILITE", + "note": "A8", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SODETREL", + "ref:EU:EVSE": "FR*E04*P*OAZS*33*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483524, + "lat": 43.7545448, + "lon": 7.3970587, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de la Scoperta", + "network": "Corri-dor", + "note": "A8", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*184*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483525, + "lat": 43.7532514, + "lon": 7.4194326, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Beausoleil", + "network": "Corri-dor", + "note": "A8", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*40*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483526, + "lat": 45.8551308, + "lon": 3.8123828, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire du Haut-Forez Sud", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*61*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483527, + "lat": 45.8559842, + "lon": 3.8127619, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire du Haut-Forez Nord", + "network": "Corri-dor", + "note": "A89", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*58*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483528, + "lat": 45.6822246, + "lon": 4.1549074, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de la Plaine du Ouest", + "network": "Corri-dor", + "note": "A72", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*2*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483529, + "lat": 45.6800027, + "lon": 4.1560518, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "8", + "charging_station:output": "300 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de la Plaine du Forez Est", + "network": "Fastned", + "note": "300 kW : 8 CCS, 8 CHAdeMO, 1 AC", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "7", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com/fr/emplacements" + } + }, + { + "type": "node", + "id": 5536483530, + "lat": 45.6311852, + "lon": 4.8196535, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Serezin du Rhône", + "network": "Corri-dor", + "note": "A7", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*151*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483531, + "lat": 45.6512127, + "lon": 4.8354006, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Solaize", + "network": "Corri-dor", + "note": "A7", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*149*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483532, + "lat": 45.6117496, + "lon": 5.2122583, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de l'Isle d'Abeau Sud", + "network": "Corri-Door", + "note": "A43", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*189*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483533, + "lat": 45.6139254, + "lon": 5.2127747, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de l'Isle d'Abeau Nord", + "network": "Corri-dor", + "note": "A43", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*81*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483534, + "lat": 45.8445715, + "lon": 5.0703733, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Lyon-Montluel", + "network": "Corri-dor", + "note": "A42", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*55*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5536483535, + "lat": 45.8437773, + "lon": 5.0700191, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "10", + "charging_station:output": "350 kW", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Lyon-Dagneux", + "network": "Ionity", + "note": "A42", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "survey", + "source:name": "Ionity Lyon-Dagneux Sud", + "website": "https://ionity.eu/en/network/network-status" + } + }, + { + "type": "node", + "id": 5537484285, + "lat": 45.0018025, + "lon": 4.8723681, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26250*A", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-04-07" + } + }, + { + "type": "node", + "id": 5538565327, + "lat": 44.5533351, + "lon": 4.5972285, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07005*A", + "ref:EU:EVSE": "FR*EBN*PV8Z6ZGXG2M", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5538726809, + "lat": 47.119956, + "lon": 0.4248762, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5540864522, + "lat": 50.6201123, + "lon": 3.083935, + "tags": { + "amenity": "charging_station", + "operator": "hotel eklo" + } + }, + { + "type": "node", + "id": 5542703070, + "lat": 43.8679527, + "lon": 4.4384916, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Marguerittes Sud", + "network": "Corri-dor", + "note": "A9", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*76*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5542703071, + "lat": 43.8753752, + "lon": 4.4495969, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Marguerittes Nord", + "network": "Corri-dor", + "note": "A9", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*140*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5542703073, + "lat": 43.5897197, + "lon": 5.1929948, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Lançon de Provence Est", + "network": "Corri-dor", + "note": "A7", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*160*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5542703074, + "lat": 43.4670787, + "lon": 6.6709073, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "brand": "Izivia", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Canaver", + "network": "SODETREL MOBILITE", + "note": "A8", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SODETREL", + "ref:EU:EVSE": "FR*E04*P*OAZS*67*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5542703075, + "lat": 44.515553, + "lon": 4.7809806, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Montélimar-Ouest", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*7*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5542703077, + "lat": 45.0174133, + "lon": 4.8746064, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Pont-de-l'Isère-Les Vinays", + "network": "Corri-dor", + "note": "A7", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*142*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5542703078, + "lat": 43.4234328, + "lon": 5.9924626, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Cambarette Nord", + "network": "SODETREL MOBILITE", + "note": "A8", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SODETREL", + "ref:EU:EVSE": "FR*E04*P*OAZS*119*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "source": "OpenDataGouv23/01/2018" + } + }, + { + "type": "node", + "id": 5542703079, + "lat": 43.4219648, + "lon": 5.9922588, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire des Terrasses de Provence Centre", + "network": "SODETREL MOBILITE", + "note": "A8", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SODETREL", + "ref:EU:EVSE": "FR*E04*P*OAZS*37*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "source": "OpenDataGouv23/01/2018" + } + }, + { + "type": "node", + "id": 5546283653, + "lat": 48.104736, + "lon": -1.68032, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "layer": "-1", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "citiz", + "voltage": "230" + } + }, + { + "type": "node", + "id": 5546392755, + "lat": 43.8642204, + "lon": 3.3126971, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire du Caylar", + "network": "Corri-dor", + "note": "A75", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*136*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5546392756, + "lat": 43.3594011, + "lon": 3.3456416, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Béziers-Montblanc Sud", + "network": "Corri-dor", + "note": "A9", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*54*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5546392757, + "lat": 43.3527773, + "lon": 1.8064414, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Port-Lauragais Sud", + "network": "Corri-dor", + "note": "A61", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*116*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5546392758, + "lat": 43.3532408, + "lon": 1.8088445, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Port-Lauragais Nord", + "network": "Corri-dor", + "note": "A61", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*115*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5546392759, + "lat": 43.1768711, + "lon": 2.5419333, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "email": "expoilation@easycharge-vinci.com", + "fee": "yes", + "motorcar": "yes", + "name": "Aire des Corbières Sud", + "network": "VINCI Autoroutes", + "note": "A61", + "opening_hours": "24/7", + "operator": "VINCI Autoroutes", + "owner": "ASF", + "payment:credit_cards": "yes", + "phone": "+33255420576", + "ref:EU:EVSE": "FR*ECH*PS75DG1FM4C", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5546392760, + "lat": 43.5440693, + "lon": 3.7924937, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Montpellier-Fabrègues Sud", + "network": "Corri-dor", + "note": "A9", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*120*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5546392761, + "lat": 43.5476777, + "lon": 3.7950035, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Montpellier-Fabrègues Nord", + "network": "Corri-dor", + "note": "A9", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*152*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552293053, + "lat": 46.7917639, + "lon": 1.7350261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan" + } + }, + { + "type": "node", + "id": 5552379909, + "lat": 45.0473301, + "lon": 0.9774668, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*94", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5552541262, + "lat": 45.3378954, + "lon": 3.2737219, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de La Fayette-Lorlanges", + "network": "Corri-dor", + "note": "A75", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*125*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541263, + "lat": 44.871496, + "lon": 3.2486835, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de la Lozère", + "network": "Corri-dor", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*127*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "survey:date": "2018-08" + } + }, + { + "type": "node", + "id": 5552541264, + "lat": 44.3293107, + "lon": 3.0797421, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "brand": "TotalEnergies", + "capacity": "8", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de l'Aveyron", + "network": "TotalEnergies", + "note": "A75", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "ref:EU:EVSE": "FR*E04*P*OAZS*123*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541265, + "lat": 44.3616696, + "lon": -0.8521079, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire des Landes Ouest", + "network": "Corri-dor", + "note": "A63", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*118*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541266, + "lat": 44.3604441, + "lon": -0.8505678, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire des Landes Est", + "network": "Corri-dor", + "note": "A63", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*112*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541267, + "lat": 43.9371181, + "lon": -1.0900642, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de l'Océan-Est", + "network": "Corri-dor", + "note": "A63", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*101*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541268, + "lat": 43.9381665, + "lon": -1.0914139, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de l'Océan-Ouest", + "network": "Corri-dor", + "note": "A63", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*109*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541269, + "lat": 43.8111251, + "lon": 1.3599108, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire du Frontonnais Sud", + "network": "Corri-dor", + "note": "A62", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*99*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541270, + "lat": 43.8128577, + "lon": 1.3616971, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire du Frontonnais Nord", + "network": "Corri-dor", + "note": "A62", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*100*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541271, + "lat": 43.1104045, + "lon": 0.6132685, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Comminges Ouest", + "network": "Corri-dor", + "note": "A64", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*186*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5552541272, + "lat": 43.1103166, + "lon": 0.6142029, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "charging_station:output": "50kW", + "fee": "yes", + "fixme": "A placer", + "motorcar": "yes", + "name": "Aire de Comminges Est", + "network": "Corri-dor", + "note": "A64", + "opening_hours": "24/7", + "operator": "Sodetrel Mobilité", + "ref:EU:EVSE": "FR*E04*P*OAZS*185*_*_*_", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 5555823891, + "lat": 47.2730193, + "lon": 4.4895713, + "tags": { + "amenity": "charging_station", + "operator": "Tesla" + } + }, + { + "type": "node", + "id": 5556371162, + "lat": 42.9351706, + "lon": 2.2160964, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11129001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5556373648, + "lat": 42.9435023, + "lon": 2.2548604, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11103001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5556374911, + "lat": 42.8100354, + "lon": 2.3085063, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11302002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5557642879, + "lat": 46.8128996, + "lon": 0.1727584, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref": "B31", + "ref:EU:EVSE": "FR*S86*PSORE*B031", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5563787965, + "lat": 50.6826424, + "lon": 3.0661713, + "tags": { + "amenity": "charging_station", + "brand": "Intermarché" + } + }, + { + "type": "node", + "id": 5564949324, + "lat": 48.9798343, + "lon": 2.2722448, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JFJJ2", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JFJJ2" + } + }, + { + "type": "node", + "id": 5565835517, + "lat": 45.0192661, + "lon": 6.6076362, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05093*A", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 5566415473, + "lat": 48.989553, + "lon": 2.2571887, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JMLC", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JMLC1" + } + }, + { + "type": "node", + "id": 5568734913, + "lat": 48.4055311, + "lon": -4.0793213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "111681187630771", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29DCJE", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "survey:date": "2018-04-21" + } + }, + { + "type": "node", + "id": 5569223839, + "lat": 47.937529, + "lon": -1.6668988, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35090*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5569277134, + "lat": 48.1075273, + "lon": -1.7266769, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "Mo-Su 11:00-23:00" + } + }, + { + "type": "node", + "id": 5569300238, + "lat": 48.1017983, + "lon": -1.7135036, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "Mo-Fr 09:30-19:30; Sa 09:30-19:00" + } + }, + { + "type": "node", + "id": 5572058353, + "lat": 47.3135136, + "lon": 4.7106341, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Siceco" + } + }, + { + "type": "node", + "id": 5573057229, + "lat": 48.5317893, + "lon": -2.0562498, + "tags": { + "amenity": "charging_station", + "operator": "Brev'Car", + "source": "survey" + } + }, + { + "type": "node", + "id": 5573722697, + "lat": 49.266043, + "lon": 0.939232, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900100", + "ref:EU:EVSE": "FR*S27*PTHUITSIGNOL*SUPERETTE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5573797696, + "lat": 47.5903187, + "lon": 7.5543783, + "tags": { + "addr:city": "Saint-Louis", + "addr:postcode": "68300", + "addr:street": "Rue du Ballon", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68297*E", + "socket:type2": "10", + "socket:typee": "10" + } + }, + { + "type": "node", + "id": 5573935348, + "lat": 48.2435298, + "lon": 2.6544004, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77348A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5579012963, + "lat": 45.9084736, + "lon": 6.705483, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74208*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5579013754, + "lat": 45.9213188, + "lon": 6.6110833, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74089*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5581191023, + "lat": 45.4517744, + "lon": 4.3834699, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 5581415543, + "lat": 48.6041145, + "lon": -2.1510492, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5581831866, + "lat": 47.1395386, + "lon": -1.3377172, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44117A", + "socket:cee_blue": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5582322794, + "lat": 45.6139429, + "lon": 5.2211069, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 5583203270, + "lat": 48.778397, + "lon": 1.1945583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900077", + "ref:EU:EVSE": "FR*S27*PMADELEINONANC*ECOLES", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5586076321, + "lat": 47.833002, + "lon": 5.3345563, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5586076322, + "lat": 47.8330344, + "lon": 5.3345537, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5586076323, + "lat": 47.8331082, + "lon": 5.3345537, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5586076324, + "lat": 47.8328041, + "lon": 5.3346777, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5586076325, + "lat": 47.8330686, + "lon": 5.3345537, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5589477464, + "lat": 49.1297697, + "lon": 2.5721569, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 5595328187, + "lat": 48.2971049, + "lon": 4.5775245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "operator": "INEO TINEA", + "owner": "SDEA10", + "ref:EU:EVSE": "FR*S10*P10178A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5596956909, + "lat": 48.708919, + "lon": 2.4644037, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 5597131477, + "lat": 43.4065524, + "lon": 3.6942445, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34301003", + "socket:chademo": "2", + "socket:schuko": "1", + "socket:type2": "4", + "socket:type2_combo": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5609843900, + "lat": 47.3191566, + "lon": -1.3482438, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44028A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5611324991, + "lat": 44.5059883, + "lon": 0.2165857, + "tags": { + "addr:city": "Virazeil", + "addr:postcode": "47200", + "addr:street": "Aire de Covoiturage", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47326-001-1;FR-S47-E47326-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*68", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611324992, + "lat": 44.4486499, + "lon": 0.1593849, + "tags": { + "addr:city": "Fourques-sur-Garonne", + "addr:postcode": "47200", + "addr:street": "Bourg", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47101-001-1;FR-S47-E47101-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611324993, + "lat": 44.4556423, + "lon": 0.2936187, + "tags": { + "addr:city": "Gontaud-de-Nogaret", + "addr:postcode": "47400", + "addr:street": "Rue des Docteurs de Samondes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47110-001-1;FR-S47-E47110-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611325019, + "lat": 44.5053016, + "lon": 0.4516853, + "tags": { + "addr:city": "Tombebœuf", + "addr:postcode": "47380", + "addr:street": "Place du Basket", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47309-001-1;FR-S47-E47309-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*54", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611325020, + "lat": 44.2889529, + "lon": 0.5099979, + "tags": { + "addr:city": "Prayssas", + "addr:postcode": "47360", + "addr:street": "Place Avenue Jean Jaurès", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "ref": "FR-S47-E47213-001-1;FR-S47-E47213-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330921, + "lat": 44.250036, + "lon": 0.3993568, + "tags": { + "addr:city": "Port-Sainte-Marie", + "addr:postcode": "47130", + "addr:street": "Parking Rue Pasteur", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "ref": "FR-S47-E47210-001-1;FR-S47-E47210-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330922, + "lat": 44.2911685, + "lon": 0.27428, + "tags": { + "addr:city": "Damazan", + "addr:postcode": "47160", + "addr:street": "Salle des Fêtes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "ref": "FR-S47-E47078-001-1;FR-S47-E47078-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330923, + "lat": 44.301159, + "lon": 0.3405172, + "tags": { + "addr:city": "Aiguillon", + "addr:postcode": "47190", + "addr:street": "Rue de Vise", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "ref": "FR-S47-E47004-002-1;FR-S47-E47004-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330926, + "lat": 44.3611733, + "lon": 0.3787681, + "tags": { + "addr:city": "Clairac", + "addr:postcode": "47320", + "addr:street": "Place Vicoze", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "ref": "FR-S47-E47065-002-1;FR-S47-E47065-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330927, + "lat": 44.3860331, + "lon": 0.6907922, + "tags": { + "addr:city": "Pujols", + "addr:postcode": "47300", + "addr:street": "Parking de la Mairie", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "TE 47", + "ref": "FR-S47-E47215-001-1;FR-S47-E47215-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*36", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330933, + "lat": 44.416494, + "lon": 0.6704691, + "tags": { + "addr:city": "Bias", + "addr:postcode": "47300", + "addr:street": "Parking du Dojo", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "TE 47", + "ref": "FR-S47-E47027-001-1;FR-S47-E47027-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*65", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330934, + "lat": 44.4000827, + "lon": 0.5869035, + "tags": { + "addr:city": "Sainte-Livrade-sur-Lot", + "addr:postcode": "47110", + "addr:street": "Parking de la Gendarmerie", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47252-001-1;FR-S47-E47252-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*46", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330935, + "lat": 44.3985069, + "lon": 0.5912662, + "tags": { + "addr:city": "Sainte-Livrade-sur-Lot", + "addr:postcode": "47110", + "addr:street": "Faubourg Gardette", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47252-002-1;FR-S47-E47252-002-2", + "ref:EU:EVSE": "FR*S47*PMB47*44", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611330936, + "lat": 44.3974309, + "lon": 0.4930339, + "tags": { + "addr:city": "Castelmoron-sur-Lot", + "addr:postcode": "47260", + "addr:street": "Place Bransouillé", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408591, + "lat": 44.3131879, + "lon": 0.0882085, + "tags": { + "addr:city": "Casteljaloux", + "addr:postcode": "47700", + "addr:street": "Place José Bes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47052-002-1;FR-S47-E47052-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408592, + "lat": 44.3134191, + "lon": 0.0904173, + "tags": { + "addr:city": "Casteljaloux", + "addr:postcode": "47700", + "addr:street": "Place de l'Église", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47052-001-1;FR-S47-E47052-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408593, + "lat": 44.1791744, + "lon": 0.2987042, + "tags": { + "addr:city": "Lavardac", + "addr:postcode": "47230", + "addr:street": "Place du Foirail", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47143-001-1;FR-S47-E47143-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408594, + "lat": 44.1341434, + "lon": 0.3356463, + "tags": { + "addr:city": "Nérac", + "addr:postcode": "47600", + "addr:street": "Foirail", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47195-002-1;FR-S47-E47195-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408595, + "lat": 44.1344283, + "lon": 0.3355068, + "tags": { + "addr:city": "Nérac", + "addr:postcode": "47600", + "addr:street": "Foirail", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47195-001-1; FR-S47-E47195-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408596, + "lat": 44.1350058, + "lon": 0.3422773, + "tags": { + "addr:city": "Nérac", + "addr:postcode": "47600", + "addr:street": "Médiathèque", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47195-003-1;FR-S47-E47195-003-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408597, + "lat": 44.1350039, + "lon": 0.3423068, + "tags": { + "addr:city": "Nérac", + "addr:postcode": "47600", + "addr:street": "Médiathèque", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47195-004-1;FR-S47-E47195-004-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408598, + "lat": 44.2038392, + "lon": 0.6119406, + "tags": { + "addr:city": "Agen", + "addr:postcode": "47000", + "addr:street": "Général de Gaulle - Grand Café Foy", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47001-006-1;FR-S47-E47001-006-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408599, + "lat": 44.2013924, + "lon": 0.6060599, + "tags": { + "addr:city": "Le Passage", + "addr:postcode": "47520", + "addr:street": "Place de la République", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47201-002-1;FR-S47-E47201-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408600, + "lat": 44.190434, + "lon": 0.597387, + "tags": { + "addr:city": "Agen", + "addr:postcode": "47520", + "addr:street": "Rue Anatole France", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47201-001-1;FR-S47-E47201-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*9", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408601, + "lat": 44.1927745, + "lon": 0.6045163, + "tags": { + "addr:city": "Le Passage", + "addr:postcode": "47520", + "addr:street": "Placette Ricard", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47201-004-1;FR-S47-E47201-004-2", + "ref:EU:EVSE": "FR*S47*PMB47*8", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408602, + "lat": 44.1948322, + "lon": 0.6034434, + "tags": { + "addr:city": "Agen", + "addr:postcode": "47520", + "addr:street": "Allée du Luxembourg", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47201-003-1;FR-S47-E47201-003-2", + "ref:EU:EVSE": "FR*S47*PMB47*6", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408603, + "lat": 44.1900128, + "lon": 0.6560415, + "tags": { + "addr:city": "Bon-Encontre", + "addr:postcode": "47240", + "addr:street": "Parking Redon", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47032-004-1;FR-S47-E47032-004-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408604, + "lat": 44.1753184, + "lon": 0.6896657, + "tags": { + "addr:city": "Castelculier", + "addr:postcode": "47240", + "addr:street": "Rue LesBoulbenes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47051-001-1;FR-S47-E47051-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408605, + "lat": 44.1861672, + "lon": 0.6763847, + "tags": { + "addr:city": "Bon-Encontre", + "addr:postcode": "47240", + "addr:street": "Parking Tortis", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47032-003-1;FR-S47-E47032-003-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408606, + "lat": 44.1862374, + "lon": 0.67223, + "tags": { + "addr:city": "Bon-Encontre", + "addr:postcode": "47240", + "addr:street": "Mascaron Basilique", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47032-001-1;FR-S47-E47032-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408607, + "lat": 44.1869605, + "lon": 0.6692675, + "tags": { + "addr:city": "Bon-Encontre", + "addr:postcode": "47240", + "addr:street": "Square Bir Hakeim", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47032-002-1;FR-S47-E47032-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408608, + "lat": 44.1815702, + "lon": 0.6638548, + "tags": { + "addr:city": "Boé", + "addr:postcode": "47550", + "addr:street": "Chemin des Écoliers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47031-001-1;FR-S47-E47031-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408609, + "lat": 44.1708043, + "lon": 0.6555426, + "tags": { + "addr:city": "Boé", + "addr:postcode": "47550", + "addr:street": "Dojo", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47031-002-1;FR-S47-E47031-002-2", + "ref:EU:EVSE": "FR*S47*PMB47*69", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408610, + "lat": 44.1601567, + "lon": 0.6272131, + "tags": { + "addr:city": "Boé", + "addr:postcode": "47550", + "addr:street": "Général de Gaulle - Grand Café Foy", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47031-003-1;FR-S47-E47031-003-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408611, + "lat": 44.0636647, + "lon": 0.6505926, + "tags": { + "addr:city": "Astaffort", + "addr:postcode": "47220", + "addr:street": "Parking du Plateau", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47015-001-1;FR-S47-E47015-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW" + } + }, + { + "type": "node", + "id": 5611408612, + "lat": 44.115272, + "lon": 0.7373875, + "tags": { + "addr:city": "Caudecoste", + "addr:postcode": "47220", + "addr:street": "Route de Gimbrede", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47060-001-1;FR-S47-E47060-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408613, + "lat": 44.1326948, + "lon": 0.6599361, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408614, + "lat": 44.1413667, + "lon": 0.6092611, + "tags": { + "addr:city": "Moirax", + "addr:postcode": "47310", + "addr:street": "Place du Bruilhois", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47169-001-1;FR-S47-E47169-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*20", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408615, + "lat": 44.1687669, + "lon": 0.5771953, + "tags": { + "addr:city": "Estillac", + "addr:postcode": "47310", + "addr:street": "Place de la Mairie", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47091-001-1;FR-S47-E47091-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408616, + "lat": 44.179032, + "lon": 0.5170602, + "tags": { + "addr:city": "Sainte-Colombe-en-Bruilhois", + "addr:postcode": "47310", + "addr:street": "Pole Sportif Bécade", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47238-001-1;FR-S47-E47238-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408617, + "lat": 44.2255895, + "lon": 0.5130583, + "tags": { + "addr:city": "Saint-Hilaire-de-Lusignan", + "addr:postcode": "47450", + "addr:street": "Place de la Mairie", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47238-001-1;FR-S47-E47238-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408618, + "lat": 44.2200575, + "lon": 0.5529293, + "tags": { + "addr:city": "Colayrac-Saint-Cirq", + "addr:postcode": "47450", + "addr:street": "Place Maurice Tisserand", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47069-002-1;FR-S47-E47069-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408619, + "lat": 44.2215857, + "lon": 0.5541256, + "tags": { + "addr:city": "Colayrac-Saint-Cirq", + "addr:postcode": "47450", + "addr:street": "Place de la Mairie", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47069-001-1;FR-S47-E47069-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408620, + "lat": 44.2387321, + "lon": 0.6441848, + "tags": { + "addr:city": "Foulayronnes", + "addr:postcode": "47510", + "addr:street": "Place du Marché", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47100-001-1; FR-S47-E47100-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408821, + "lat": 44.2304089, + "lon": 0.6783468, + "tags": { + "addr:city": "Pont-du-Casse", + "addr:postcode": "47480", + "addr:street": "Parking Centre Commercial", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47209-002-1;FR-S47-E47209-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408822, + "lat": 44.2313727, + "lon": 0.6810625, + "tags": { + "addr:city": "Pont-du-Casse", + "addr:postcode": "47480", + "addr:street": "Parking Centre Bourg", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47209-001-1;FR-S47-E47209-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408826, + "lat": 44.2831062, + "lon": 0.7636249, + "tags": { + "addr:city": "Laroque-Timbaut", + "addr:postcode": "47340", + "addr:street": "Place De l'Hôtel de Ville", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47138-001-1;FR-S47-E47138-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*1", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408827, + "lat": 44.2773847, + "lon": 0.8821799, + "tags": { + "addr:city": "Beauville", + "addr:postcode": "47470", + "addr:street": "Place Carré", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47025-001-1;FR-S47-E47025-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408828, + "lat": 44.3836456, + "lon": 0.8908555, + "tags": { + "addr:city": "Dausse", + "addr:postcode": "47140", + "addr:street": "Place du 8 Mai 1945", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47079-001-1;FR-S47-E47079-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408829, + "lat": 44.3842897, + "lon": 0.8101103, + "tags": { + "addr:city": "Penne d'Agenais", + "addr:postcode": "47140", + "addr:street": "Théatre d'Eau", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47203-002-1;FR-S47-E47203-002-2", + "ref:EU:EVSE": "FR*S47*PMB47*31", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408830, + "lat": 44.3940707, + "lon": 0.8067146, + "tags": { + "addr:city": "Saint-Sylvestre-sur-Lot", + "addr:postcode": "47140", + "addr:street": "Parking de la Capitainerie", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47203-001-1;FR-S47-E47203-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*30", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408831, + "lat": 44.3961406, + "lon": 0.8054942, + "tags": { + "addr:city": "Saint-Sylvestre-sur-Lot", + "addr:postcode": "47140", + "addr:street": "Parking Place du Lot", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47280-001-1;FR-S47-E47280-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408844, + "lat": 44.5008979, + "lon": 0.1771438, + "tags": { + "addr:city": "Marmande", + "addr:postcode": "47200", + "addr:street": "La Gravette", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47157-008-1;FR-S47-E47157-008-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408854, + "lat": 44.4966699, + "lon": 0.1671687, + "tags": { + "addr:city": "Marmande", + "addr:postcode": "47200", + "addr:street": "Place Birac", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47157-001-1;FR-S47-E47157-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408855, + "lat": 44.4985658, + "lon": 0.16866, + "tags": { + "addr:city": "Marmande", + "addr:postcode": "47200", + "addr:street": "Place de La Laicité", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47157-002-1;FR-S47-E47157-002-2", + "ref:EU:EVSE": "FR*S47*PMB47*14", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408856, + "lat": 44.501688, + "lon": 0.1691079, + "tags": { + "addr:city": "Marmande", + "addr:postcode": "47200", + "addr:street": "Place de La Couronne", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47157-003-1;FR-S47-E47157-003-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408857, + "lat": 44.5038382, + "lon": 0.1632741, + "tags": { + "addr:city": "Marmande", + "addr:postcode": "47200", + "addr:street": "Place du 14 Juillet", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47157-004-1;FR-S47-E47157-004-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408858, + "lat": 44.5075702, + "lon": 0.1544765, + "tags": { + "addr:city": "Marmande", + "addr:postcode": "47200", + "addr:street": "Parking Piscine", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47157-007-1;FR-S47-E47157-007-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408859, + "lat": 44.5303878, + "lon": 0.0955389, + "tags": { + "addr:city": "Sainte-Bazeille", + "addr:postcode": "47180", + "addr:street": "Place du Docteur Belot", + "amenity": "charging_station", + "capacity": "4", + "operator": "Mobive", + "socket:type2": "4", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408860, + "lat": 44.6499738, + "lon": 0.0835917, + "tags": { + "addr:city": "Monségur", + "addr:postcode": "33580", + "addr:street": "23 Place du 8 Mai", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR-S33-E33289-001-1;FR-S33-E33289-001-2", + "ref:EU:EVSE": "FR*S33*PMB33*96", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408861, + "lat": 44.675552, + "lon": 0.1810498, + "tags": { + "addr:city": "Duras", + "addr:postcode": "47120", + "addr:street": "Place de l'Union", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47086-001-1;FR-S47-E47086-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408879, + "lat": 44.6664677, + "lon": 0.4000837, + "tags": { + "addr:city": "Eymet", + "addr:postcode": "24500", + "addr:street": "Parking Park Relais - Departemental 18", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24167*001", + "ref:EU:EVSE": "FR*S24*PMB24*36", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408880, + "lat": 44.6517171, + "lon": 0.5913359, + "tags": { + "addr:city": "Castillonnès", + "addr:postcode": "47330", + "addr:street": "Place Jasmin", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47057-001-1;FR-S47-E47057-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5611408881, + "lat": 44.6305448, + "lon": 0.4595563, + "tags": { + "addr:city": "Lauzun", + "addr:postcode": "47410", + "addr:street": "Avenue de Schlierbach", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47142-001-1;FR-S47-E47142-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5612106128, + "lat": 43.2849101, + "lon": 3.2798621, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34299*001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5613612990, + "lat": 44.519094, + "lon": 0.0321597, + "tags": { + "addr:city": "Meilhan-sur-Garonne", + "addr:postcode": "47180", + "addr:street": "Parking Piscine", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47165-001-1;FR-S47-E47165-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5613612991, + "lat": 44.4474283, + "lon": 0.0260174, + "tags": { + "addr:city": "Cocumont", + "addr:postcode": "47250", + "addr:street": "Place de l'Église", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47068-001-1;FR-S47-E47068-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5613612995, + "lat": 44.0567153, + "lon": 0.261856, + "tags": { + "addr:city": "Mézin", + "addr:postcode": "47170", + "addr:street": "Parking de la Piscine", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47167-002-1;FR-S47-E47167-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW" + } + }, + { + "type": "node", + "id": 5613612996, + "lat": 44.0560098, + "lon": 0.2565922, + "tags": { + "addr:city": "Mézin", + "addr:postcode": "47170", + "addr:street": "Place du Club", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47167-001-1;FR-S47-E47167-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW" + } + }, + { + "type": "node", + "id": 5613612997, + "lat": 44.4821986, + "lon": 0.9438533, + "tags": { + "addr:city": "Monsempron-Libos", + "addr:postcode": "47500", + "addr:street": "Rue des Écoles", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47179-001-1;FR-S47-E47179-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*23", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5613612998, + "lat": 44.5274049, + "lon": 0.7606932, + "tags": { + "addr:city": "Monflanquin", + "addr:postcode": "47150", + "addr:street": "Abattoir", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47175-002-1;FR-S47-E47175-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5613612999, + "lat": 44.5308238, + "lon": 0.768021, + "tags": { + "addr:city": "Monflanquin", + "addr:postcode": "47150", + "addr:street": "Place Yves Balségur", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47175-001-1;FR-S47-E47175-001-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5613613000, + "lat": 44.638335, + "lon": 0.7456434, + "tags": { + "addr:city": "Villeréal", + "addr:postcode": "47210", + "addr:street": "Parking Atelier Technique", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive", + "ref": "FR-S47-E47324-002-1;FR-S47-E47324-002-2", + "socket:type2": "2", + "socket:type2:output": "18kW", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5613613001, + "lat": 44.6382797, + "lon": 0.7411185, + "tags": { + "addr:city": "Villeréal", + "addr:postcode": "47210", + "addr:street": "Boulevard Alphonse de Poitiers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref": "FR-S47-E47324-001-1;FR-S47-E47324-001-2", + "ref:EU:EVSE": "FR*S47*PMB47*64", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "source": "https://www.mobive.fr" + } + }, + { + "type": "node", + "id": 5614658179, + "lat": 46.4682078, + "lon": -0.8038339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85092*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5615365207, + "lat": 48.501264, + "lon": 7.480322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Ville de Rosheim", + "ref": "FR*V05*E67411*002*1;FR*V05*E67411*002*2", + "ref:EU:EVSE": "FR*V05*P67411*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-alize-liberte/ - 11/05/2018" + } + }, + { + "type": "node", + "id": 5615365208, + "lat": 48.5050154, + "lon": 7.492316, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Ville de Rosheim", + "ref": "FR*V05*E67411*001*1;FR*V05*E67411*001*2", + "ref:EU:EVSE": "FR*V05*P67411*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-alize-liberte/ - 11/05/2018" + } + }, + { + "type": "node", + "id": 5615365209, + "lat": 47.9053752, + "lon": 1.9025136, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-alize-liberte/ - 11/05/2018" + } + }, + { + "type": "node", + "id": 5615365210, + "lat": 47.9039133, + "lon": 1.9030715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-alize-liberte/ - 11/05/2018" + } + }, + { + "type": "node", + "id": 5615365211, + "lat": 47.2659665, + "lon": -1.4837605, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "probablement ä diviser en plusieurs (3?) bornes", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "DOCUWORLD", + "ref": "FR*DWD*E44172*001*6;FR*DWD*E44172*001*5;FR*DWD*E44172*001*2;FR*DWD*E44172*001*1;FR*DWD*E44172*001*4;FR*DWD*E44172*001*3", + "ref:EU:EVSE": "FR*DWD*P44172*001", + "socket:type2": "6", + "socket:typee": "6" + } + }, + { + "type": "node", + "id": 5615365212, + "lat": 45.976184, + "lon": 5.312832, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CCPA", + "ref": "FR*A15*E01089*001*1;FR*A15*E01089*001*2;FR*A15*E01089*001*3;FR*A15*E01089*001*4", + "ref:EU:EVSE": "FR*A15*P01089*001", + "socket:type2": "3", + "socket:type3c": "1", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 5615365213, + "lat": 47.9028761, + "lon": 1.9046868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "HAySaCpajq2rA8cxGM6w0K", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*006", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-alize-liberte/ - 11/05/2018" + } + }, + { + "type": "node", + "id": 5615402366, + "lat": 46.0692056, + "lon": 6.5498409, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "SGA mobility", + "source": "survey" + } + }, + { + "type": "node", + "id": 5620701303, + "lat": 43.690232, + "lon": 7.2442201, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "operator": "AutoBleue" + } + }, + { + "type": "node", + "id": 5621342068, + "lat": 49.1279698, + "lon": 6.1748779, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Connect&Go" + } + }, + { + "type": "node", + "id": 5625452121, + "lat": 44.9094237, + "lon": -0.4914273, + "tags": { + "amenity": "charging_station", + "operator": "satar" + } + }, + { + "type": "node", + "id": 5627309048, + "lat": 47.5190755, + "lon": -1.7500663, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44062A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5629593797, + "lat": 49.4297844, + "lon": 1.0849178, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Couture", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*008", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5629593798, + "lat": 49.4297638, + "lon": 1.0849692, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Couture", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*008", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5630212775, + "lat": 49.939653, + "lon": 2.9246809, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Intermarche Perron", + "parking:fee": "no", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22kW" + } + }, + { + "type": "node", + "id": 5630382252, + "lat": 50.431401, + "lon": 2.8110807, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Lens parking", + "output": "3700", + "socket:schuko": "6" + } + }, + { + "type": "node", + "id": 5633121367, + "lat": 49.3325282, + "lon": -0.3956195, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET190", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5633138865, + "lat": 49.3278343, + "lon": -0.3916069, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET189", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5633524575, + "lat": 48.4474301, + "lon": 6.7428428, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EVLink" + } + }, + { + "type": "node", + "id": 5635187168, + "lat": 50.6442084, + "lon": 3.1427165, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5640107153, + "lat": 42.8104473, + "lon": 2.5042995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66187001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5640148177, + "lat": 43.0050973, + "lon": 2.6269829, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11435001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5640149584, + "lat": 48.4626554, + "lon": 7.474018, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "level": "0" + } + }, + { + "type": "node", + "id": 5642015129, + "lat": 48.6458543, + "lon": 6.1802397, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "1€/h", + "charging_station:output": "36 kW", + "description:payment": "RFID", + "fee": "yes", + "official_name": "MGN_Parking Gare Houdemont", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "parking:fee": "no", + "payment:contactless": "yes", + "ref": "MAT-004823", + "socket:schuko": "2", + "socket:schuko:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 5643506634, + "lat": 47.2531714, + "lon": 0.2992137, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5643637121, + "lat": 45.8097528, + "lon": 5.3694322, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5644192477, + "lat": 44.9337424, + "lon": 4.9038036, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26362*L", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5645981057, + "lat": 43.509135, + "lon": 3.367047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "phone": "+33 805021480", + "ref:EU:EVSE": "FR*S34*P34063*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "url": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 5646101019, + "lat": 47.9668787, + "lon": 6.4646132, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Plombières-les-Bains - Parking Mairie", + "opening_hours": "24/7", + "operator": "Mairie de Plombières-les-Bains", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 5646284886, + "lat": 43.9182363, + "lon": 2.1379975, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "maxstay": "unlimited", + "motorcar": "yes", + "operator": "Ecomobility" + } + }, + { + "type": "node", + "id": 5647540942, + "lat": 43.9385273, + "lon": 4.5588002, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30212*001", + "ref:EU:EVSE": "FR*S30*P30212*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5651490345, + "lat": 47.6574605, + "lon": -2.8045073, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5651535379, + "lat": 48.8534949, + "lon": 2.4850573, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:nfc": "yes", + "authentication:none": "no", + "authentication:phone_call": "no", + "authentication:short_message": "no", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "name": "Val de Fontenay", + "scooter": "no", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "truck": "no", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5652543177, + "lat": 45.548833, + "lon": 5.983449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PCY2ZODO2QU", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5654151813, + "lat": 44.5645959, + "lon": 6.4992293, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05046*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5654151814, + "lat": 44.5472197, + "lon": 6.4850632, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05012*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5654151815, + "lat": 44.5510114, + "lon": 6.481925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "279858227192331", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05046*B", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017-08-11" + } + }, + { + "type": "node", + "id": 5660371357, + "lat": 49.0943941, + "lon": 6.7168996, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5661514121, + "lat": 46.896811, + "lon": 5.024491, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5669838305, + "lat": 43.2781963, + "lon": 5.4256287, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "1xACMode3, 1xCHAdeMO, MAT-017338", + "motorcar": "yes", + "name": "KiWhi" + } + }, + { + "type": "node", + "id": 5672942600, + "lat": 47.5616015, + "lon": 7.5271423, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68126*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5672942601, + "lat": 47.5868844, + "lon": 7.5607102, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Parking de la Cité Danzas", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "output": "22 kW", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68297*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5672942683, + "lat": 47.5593928, + "lon": 7.5099506, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68061*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5673525612, + "lat": 45.1171821, + "lon": 5.3270153, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Romans - Carrefour des 4 Routes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38453*A", + "ref:EU:EVSE": "FR*S38*P38453*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400", + "website": "http://www.sedi.fr" + } + }, + { + "type": "node", + "id": 5673617354, + "lat": 45.0423534, + "lon": 5.0515484, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26281*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5673617360, + "lat": 45.0421142, + "lon": 5.0561196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26281*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5674607108, + "lat": 47.6854016, + "lon": 6.4985568, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Esplanade Charles de Gaulle", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07031067", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5675299451, + "lat": 46.9863327, + "lon": 3.1513843, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58194*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5679473413, + "lat": 48.9912824, + "lon": 2.2228725, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "KUQE", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/KUQE1" + } + }, + { + "type": "node", + "id": 5679977583, + "lat": 49.4468562, + "lon": 1.1074378, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*003" + } + }, + { + "type": "node", + "id": 5685167973, + "lat": 44.0116662, + "lon": 4.4170591, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30334*003", + "ref:EU:EVSE": "FR*S30*P30334*003", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5685750469, + "lat": 45.782558, + "lon": 4.8791276, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5687122825, + "lat": 47.0348689, + "lon": 5.7839204, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S25*P02502149", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "socket:typee:output": "2kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5687433578, + "lat": 47.6010509, + "lon": 7.5886599, + "tags": { + "amenity": "charging_station", + "description": "Palmrain", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "output": "22 kW", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68349*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5689880445, + "lat": 48.7133979, + "lon": 2.3793214, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5690867964, + "lat": 43.6183441, + "lon": 3.914913, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "10", + "charging_station:output": "22 kVA", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*019", + "socket:type2": "10", + "socket:type2:output": "22 kVA", + "socket:typee": "10", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 5690966499, + "lat": 47.5384245, + "lon": 7.4824632, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EBM" + } + }, + { + "type": "node", + "id": 5690991872, + "lat": 48.3134093, + "lon": 0.8312295, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "L'utilisation de cette borne nécessite au préalable de se connecter au site internet http://www.sde28.fr afin de solliciter la délivrance d'un badge.", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "network:website": "https://www.energie28.fr/pages/le-service-des-bornes-de-charge-52.html", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ROT1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5691597745, + "lat": 43.5455377, + "lon": -1.4918014, + "tags": { + "access": "yes", + "addr:city": "Tarnos", + "addr:postcode": "40220", + "addr:street": "Rue Hélène Boucher", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Borne de recharge disponible pour deux véhicules. TYPE 2 (Rapide 43KW 400V AC-TRI 63A), EU DOMESTIC PLUG (Standard 3KW 230V AC-SINGLE 16A), TYPE 2 (Accelerated 22KW 400V AC-TRI 32A), EU DOMESTIC PLUG (Standard 3KW 230V AC-SINGLE 16A).", + "fee": "yes", + "level": "0", + "mapillary": "520314922305182", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref": "FR*S40*P40312*001", + "ref:EU:EVSE": "FR*S40*PMB40*44", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5692925967, + "lat": 48.9581833, + "lon": 2.1973446, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://mon.freshmile.com" + } + }, + { + "type": "node", + "id": 5694654679, + "lat": 49.4216712, + "lon": 1.1058885, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5698392285, + "lat": 49.5249896, + "lon": 2.7226041, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "4", + "fee": "yes", + "name": "Ressons Est", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5698429678, + "lat": 48.9789425, + "lon": 2.498247, + "tags": { + "amenity": "charging_station", + "authentication": "no", + "fee": "no", + "name": "Usine Paris Nord destination charging", + "output": "22kW", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5698587343, + "lat": 47.3399171, + "lon": 5.0641103, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "opening_hours": "Mo-Sa 10:00-20:00; Fr 10:00-21:00", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 5701579822, + "lat": 48.7261389, + "lon": 4.5914507, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Cité Administrative", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5701590321, + "lat": 48.7253529, + "lon": 4.5855749, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Place d'Armes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5701907911, + "lat": 47.5863846, + "lon": 7.5655042, + "tags": { + "amenity": "charging_station", + "description": "Parking Place Trimbach", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "output": "22 kW", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68297*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5701907912, + "lat": 47.5910309, + "lon": 7.5565874, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68297*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5701907914, + "lat": 47.559391, + "lon": 7.5099809, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68061*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5701908026, + "lat": 47.590899, + "lon": 7.5614539, + "tags": { + "amenity": "charging_station", + "description": "Parking ISL rue du Général Cassagnou", + "fixme": "add proper tags: type = Borne de recharge accélérée (22 kW)", + "output": "22 kW" + } + }, + { + "type": "node", + "id": 5702785188, + "lat": 47.5754171, + "lon": 7.5218672, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68135*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5703132241, + "lat": 49.4264115, + "lon": 1.0775741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Saint-Clément", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*013", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5711117378, + "lat": 47.5899068, + "lon": 7.5831551, + "tags": { + "amenity": "charging_station", + "description": "Parking Place des Bateliers", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "output": "22 kW", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68149*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5711120277, + "lat": 47.5917215, + "lon": 7.5858811, + "tags": { + "amenity": "charging_station", + "description": "Rue du Maréchal Joffre", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "output": "22 kW", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68149*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5713217850, + "lat": 44.2210237, + "lon": 1.9841126, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12167*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2018" + } + }, + { + "type": "node", + "id": 5713803497, + "lat": 43.7605173, + "lon": 6.4423671, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83142*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5714048090, + "lat": 45.8141885, + "lon": 1.268255, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Sodetrel", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 5715106668, + "lat": 48.968626, + "lon": 2.2405227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://mon.freshmile.com" + } + }, + { + "type": "node", + "id": 5716064714, + "lat": 44.7269848, + "lon": 5.0241892, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26108*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "Survey;BDOrtho IGN" + } + }, + { + "type": "node", + "id": 5717842143, + "lat": 48.5309616, + "lon": 0.7521661, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Gaston Gibory", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61230A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5718026008, + "lat": 47.6489285, + "lon": 7.460453, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68309*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5718028015, + "lat": 47.6704405, + "lon": 7.4979352, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68163*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5718040880, + "lat": 47.6349519, + "lon": 7.4871232, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68021*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5718111928, + "lat": 48.0179584, + "lon": -1.5967632, + "tags": { + "amenity": "charging_station", + "operator": "Solarenn SCA" + } + }, + { + "type": "node", + "id": 5718151622, + "lat": 43.6597138, + "lon": 3.9344485, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5718157036, + "lat": 48.6065156, + "lon": 7.7495107, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 5720428751, + "lat": 48.9836052, + "lon": 2.2002124, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5720432429, + "lat": 48.9660418, + "lon": 2.2086071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5720435265, + "lat": 48.9612167, + "lon": 2.1904636, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5720439073, + "lat": 48.9621, + "lon": 2.1812622, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5723009221, + "lat": 50.4720344, + "lon": 2.958154, + "tags": { + "amenity": "charging_station", + "operator": "Scofel" + } + }, + { + "type": "node", + "id": 5723522522, + "lat": 50.3967474, + "lon": 2.8611076, + "tags": { + "amenity": "charging_station", + "operator": "Transportes Bray" + } + }, + { + "type": "node", + "id": 5725910000, + "lat": 48.9733073, + "lon": 5.5111124, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Modulo", + "opening_hours": "24/7", + "operator": "FUCLEM", + "ref": "66450;66451", + "socket:type2": "2", + "socket:type2:output": "22kw" + } + }, + { + "type": "node", + "id": 5725980840, + "lat": 48.9764293, + "lon": 5.701714, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 5725980841, + "lat": 48.9797032, + "lon": 5.7118692, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5727961451, + "lat": 46.6571462, + "lon": -0.9158014, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85014*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5728089877, + "lat": 48.6237214, + "lon": 6.3433913, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5732645006, + "lat": 44.5248165, + "lon": 6.4006942, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "free": "yes", + "operator": "Mairie de Savines le lac", + "socket:cee_blue": "8", + "socket:cee_blue:output": "230" + } + }, + { + "type": "node", + "id": 5732665542, + "lat": 44.5246919, + "lon": 6.4003287, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S05*P05164*B", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5736017184, + "lat": 45.2063997, + "lon": 5.4652732, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "fee": "no", + "motorcar": "no", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 5736017185, + "lat": 45.2379042, + "lon": 5.4051581, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "socket:usb": "4" + } + }, + { + "type": "node", + "id": 5737077748, + "lat": 43.0139784, + "lon": 3.0643418, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11266003", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5739601221, + "lat": 47.2862445, + "lon": -1.4529979, + "tags": { + "amenity": "charging_station", + "operator": "Systeme U" + } + }, + { + "type": "node", + "id": 5745459447, + "lat": 44.4245988, + "lon": 4.3437034, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07306*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5749185683, + "lat": 45.744665, + "lon": 4.8227404, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "mapillary": "290231206029388", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*PFCJCBB", + "socket:chademo": "3", + "socket:type2": "3", + "socket:type2_combo": "3", + "survey:date": "2017-10-10" + } + }, + { + "type": "node", + "id": 5750150948, + "lat": 43.4916043, + "lon": 5.3312998, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5750150949, + "lat": 43.4915774, + "lon": 5.3313106, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5750150950, + "lat": 43.4916293, + "lon": 5.3312904, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5750150951, + "lat": 43.4916564, + "lon": 5.3312769, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5755664651, + "lat": 45.9356087, + "lon": 6.1235179, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "PRINGY - Route du Pont du Brogny", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74217*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5759179126, + "lat": 48.0104678, + "lon": -1.2912772, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35014*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5759485765, + "lat": 44.527687, + "lon": 6.40387, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S05*P05164*A", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2", + "truck": "yes", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5759983422, + "lat": 48.7049203, + "lon": 2.2532257, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "fee": "no", + "note:location": "Parking Auchan", + "opening_hours": "00:00-24:00", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759983423, + "lat": 48.7363754, + "lon": 2.2380191, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Golf de verrières", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759983424, + "lat": 48.7085045, + "lon": 2.1761994, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "CA Paris-Saclay", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759983426, + "lat": 48.7245787, + "lon": 2.1534732, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_type": "standart", + "fee": "no", + "note:location": "Parking de l'INSTN", + "opening_hours": "07:00-19:00", + "operator": "INSTN Saclay", + "output": "7kW", + "socket": "3", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759987953, + "lat": 48.7408913, + "lon": 2.2522823, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "7", + "charging_type": "standart", + "fee": "yes", + "note:location": "Stationnement sur voirie", + "opening_hours": "00:00-24:00", + "operator": "Autolib' Estienne d'Orves", + "output": "3kW", + "socket": "14", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988460, + "lat": 48.7458623, + "lon": 2.2691, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "7", + "charging_type": "standart", + "fee": "yes", + "note:location": "Stationnement sur voirie", + "opening_hours": "00:00-24:00", + "operator": "Autolib' Maréchal Foch", + "output": "3kW", + "socket": "14", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988462, + "lat": 48.7101913, + "lon": 2.175905, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "note:location": "Parking des employés", + "operator": "CA Paris-Saclay", + "socket": "4", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988463, + "lat": 48.6979993, + "lon": 2.1843088, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "16", + "capacity": "2", + "charging_type": "standart", + "fee": "no", + "layer": "-1", + "note:location": "Parking public souterrain", + "opening_hours": "00:00-24:00", + "operator": "Gare Orsay Dubreuil", + "output": "3.6kW", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988552, + "lat": 48.7465227, + "lon": 2.2666772, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charging_type": "standart", + "fee": "no", + "layer": "-1", + "note:location": "Parking souterrain", + "opening_hours": "06:00-20:30", + "operator": "Mairie", + "output": "3kW", + "socket": "8", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988553, + "lat": 48.7066818, + "lon": 2.1755861, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "note:location": "Parking de l'établissement", + "operator": "Institut d'Optique Graduate School", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988554, + "lat": 48.6838689, + "lon": 2.1847045, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "1", + "charging_type": "standart", + "fee": "no", + "note:location": "chez un particulier", + "opening_hours": "00:00-24:00 \"by appointement\"", + "operator": "Particulier", + "output": "3kW", + "socket": "1", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988555, + "lat": 48.7319101, + "lon": 2.2153147, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "charging_type": "standart", + "fee": "no", + "note:location": "chez un particulier", + "operator": "Particulier", + "output": "3kW", + "socket": "1", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988556, + "lat": 48.6847449, + "lon": 2.19492, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "1", + "charging_type": "very_fast", + "fee": "no", + "note:location": "Parking du concessionnaire", + "opening_hours": "08:00-19:30", + "operator": "Nissan", + "operator:wikidata": "Q20165", + "operator:wikipedia": "en:Nissan", + "output": "43kW", + "socket": "1", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988557, + "lat": 48.6782448, + "lon": 2.1686941, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charging_type": "standart", + "fee": "no", + "note:location": "Partking du centre commercial", + "opening_hours": "00:00-24:00", + "operator": "Centre Commercial ULIS 2", + "output": "3.2kW", + "socket": "4", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988558, + "lat": 48.6478613, + "lon": 2.272236, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "charging_type": "fast", + "fee": "no", + "note:location": "Parking du concessionnaire (client et agents)", + "opening_hours": "08:30-18:30", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "output": "22kW", + "socket": "1", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988559, + "lat": 48.7329827, + "lon": 2.260259, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "1", + "charging_type": "standart", + "fee": "no", + "note:location": "chez un particulier", + "opening_hours": "00:00-24:00", + "operator": "Particulier", + "output": "3kW", + "socket": "1", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988560, + "lat": 48.6846753, + "lon": 2.1955748, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "charging_type": "standart", + "fee": "no", + "fixme": "emplacement", + "note:location": "Parking du concessionnaire", + "opening_hours": "08:30-18:30", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "output": "3kW", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988561, + "lat": 48.7106119, + "lon": 2.1765407, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "note:location": "Parking de l'établissement", + "operator": "Centre de distribution La Poste", + "socket": "10", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988562, + "lat": 48.7229987, + "lon": 2.2667571, + "tags": { + "access": "private", + "amenity": "charging_station", + "charging_type": "standart", + "fee": "no", + "fixme": "revoir emplacement", + "motorcar": "yes", + "note:location": "Parking des employés", + "operator": "Carrefour", + "output": "3kW", + "socket": "20", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988770, + "lat": 48.7258039, + "lon": 2.2804514, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "no", + "description": "badge disponible à l'atelier", + "fee": "no", + "motorcar": "yes", + "network": "Renault", + "opening_hours": "24/7", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "reservation": "no", + "socket:type3c": "2", + "socket:type3c:output": "22 kW" + } + }, + { + "type": "node", + "id": 5759988771, + "lat": 48.7302663, + "lon": 2.2404864, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charging_type": "fast", + "fee": "no", + "note:location": "Parking du supermarché, sous ombrière photovoltaïque", + "opening_hours": "08:30-20:00", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "output": "20kW", + "socket": "6", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988772, + "lat": 48.6945063, + "lon": 2.295743, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "operator": "Mairie", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988773, + "lat": 48.6949157, + "lon": 2.2943782, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "00:00-24:00", + "operator": "Parking parc urbain", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988774, + "lat": 48.7080341, + "lon": 2.2779478, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no", + "note:location": "Parking de l'entreprise", + "operator": "G.S.R. Technology", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988775, + "lat": 48.684144, + "lon": 2.2021507, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_type": "standart", + "fee": "no", + "note:location": "Parc de Courtabeuf", + "opening_hours": "00:00-24:00", + "operator": "Renault Sport", + "output": "3kW", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988776, + "lat": 48.7200517, + "lon": 2.2795102, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_type": "standart", + "fee": "no", + "note:location": "Parking Point P", + "opening_hours": "07:00-18:00", + "operator": "Point P", + "output": "3kW", + "socket": "2", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988778, + "lat": 48.7128675, + "lon": 2.1481546, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "no", + "note:location": "Parking visiteurs", + "opening_hours": "00:00-24:00", + "operator": "Synchrotron Soleil", + "socket": "8", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988779, + "lat": 48.6965921, + "lon": 2.1792867, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no", + "note:location": "Parking de l'établissement", + "operator": "EPAPS", + "source": "Paris-Saclay opendata (import) : vérifier accès et emplacament" + } + }, + { + "type": "node", + "id": 5759988784, + "lat": 48.709785, + "lon": 2.1637077, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_type": "fast", + "fee": "yes", + "name": "Joliot-Curie - Ouest", + "note:location": "Parking de l'école", + "opening_hours": "00:00-24:00", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "001", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5760441939, + "lat": 42.5554157, + "lon": 2.2705597, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Olette", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66125*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5764055476, + "lat": 47.8889129, + "lon": -2.837522, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Joseph Richard", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56117*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5765988365, + "lat": 47.3458692, + "lon": 6.3609854, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02504771", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5766335463, + "lat": 47.8808744, + "lon": -2.7709514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Comte de Lanjuinais", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56017*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5768779662, + "lat": 47.2451931, + "lon": -2.3176334, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S44*P44132B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5768897146, + "lat": 44.5987908, + "lon": 2.4030366, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12076*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5769523648, + "lat": 46.7209125, + "lon": -1.9469465, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85226*003", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5774125770, + "lat": 46.6332185, + "lon": -0.5768808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB06050A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5774571932, + "lat": 45.8189881, + "lon": 1.2866101, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5774614445, + "lat": 46.2084663, + "lon": 6.4056328, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "note": "BOEGE_50 Rue du Bourno", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref": "FR*S74*P74037*A", + "ref:EU:EVSE": "FR*EBN*PYAJEY50I1R", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-02-07" + } + }, + { + "type": "node", + "id": 5777415787, + "lat": 44.816076, + "lon": 4.0630337, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "eborn", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref:EU:EVSE": "FR*EBN*PCXQHLM", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5777681016, + "lat": 44.3376042, + "lon": 2.5554332, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S12*P12174*001", + "scooter": "no", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 5779513893, + "lat": 43.5822821, + "lon": 3.9347146, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34129*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5780246929, + "lat": 48.5083789, + "lon": -3.8745254, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ouest charge" + } + }, + { + "type": "node", + "id": 5784304857, + "lat": 45.5659537, + "lon": 5.9366613, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PY4YC7FBRZQ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5784910808, + "lat": 48.7481312, + "lon": 2.3538476, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Schneider Electric" + } + }, + { + "type": "node", + "id": 5784913803, + "lat": 48.7462371, + "lon": 2.3544339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "mapillary": "932909987511852", + "name": "EVlink", + "operator": "Schneider Electric", + "survey:date": "2018-11-14" + } + }, + { + "type": "node", + "id": 5787752332, + "lat": 46.1377599, + "lon": 6.2701133, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74220*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5790314917, + "lat": 48.1410496, + "lon": -3.6008439, + "tags": { + "addr:city": "Gourin", + "addr:postcode": "56110", + "addr:street": "Place du Général de Gaulle", + "amenity": "charging_station", + "amperage": "60", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "charging_station:output": "22 kW", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "name": "Place Général de Gaulle", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S56*P56066*A", + "socket:chademo": "1", + "socket:chademo:current": "50", + "socket:chademo:output": "20 kW", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:current": "60", + "socket:type2_combo:output": "20 kW", + "source": "local knowledge", + "source:url": "http://www.gourin.fr/borne-de-recharge-electrique.html", + "url": "https://fr.chargemap.com/morbihan-energie-place-gen-de-gaulle-gourin.html", + "voltage": "500", + "website": "http://morbihan-energies.fr/VE1/#carte", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 5792792059, + "lat": 43.9567097, + "lon": 2.8816264, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12208*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5794026992, + "lat": 47.1305402, + "lon": -0.1551282, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49215*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5795210769, + "lat": 46.4009515, + "lon": 6.5870568, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74119*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-03-07" + } + }, + { + "type": "node", + "id": 5795307636, + "lat": 47.6736254, + "lon": -2.9591438, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue Georges Cadoudal", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56176*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5796335832, + "lat": 49.2777065, + "lon": -0.25719, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET150", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5798217024, + "lat": 44.9058636, + "lon": 4.4244482, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07064*B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5799190716, + "lat": 45.8900323, + "lon": 6.6997117, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "name": "Tesla Charger", + "operator": "La Ferme de Cupelin", + "socket:type2": "22 kW" + } + }, + { + "type": "node", + "id": 5800341309, + "lat": 44.2211051, + "lon": 2.3184384, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12262*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5802398678, + "lat": 46.0666076, + "lon": 6.3117904, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74224*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 5803757227, + "lat": 48.1381671, + "lon": -1.6957247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 5803838761, + "lat": 48.3496665, + "lon": -1.1942093, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35115*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5804967786, + "lat": 42.8953713, + "lon": 1.7951636, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09206*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5805271398, + "lat": 47.2714211, + "lon": -0.0645983, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 5809092535, + "lat": 49.7075573, + "lon": 0.2053805, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5809329833, + "lat": 45.3893492, + "lon": 3.9419614, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Usson-en-Forez", + "ref:EU:EVSE": "FRS42P42318A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5810630275, + "lat": 43.6907209, + "lon": 4.2054585, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30006*002", + "ref:EU:EVSE": "FR*S30*P30006*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5810630280, + "lat": 43.6832317, + "lon": 4.2081589, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30006*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5810959952, + "lat": 43.5641895, + "lon": 1.3893138, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5810964256, + "lat": 43.5642323, + "lon": 1.3893315, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5810964270, + "lat": 43.5642738, + "lon": 1.3893484, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5813116361, + "lat": 48.9890751, + "lon": 2.2597285, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5813122856, + "lat": 43.5641469, + "lon": 1.3892956, + "tags": { + "access": "private", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 5814083639, + "lat": 49.085863, + "lon": 7.4897914, + "tags": { + "amenity": "charging_station", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5815539206, + "lat": 48.9913967, + "lon": 2.2787067, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBDV", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBDV1" + } + }, + { + "type": "node", + "id": 5817642056, + "lat": 44.2416487, + "lon": -1.1212724, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40229*001", + "ref:EU:EVSE": "FR*S40*PMB40*27", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5817907507, + "lat": 48.1775165, + "lon": 0.6638865, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Énergie E. Leclerc (www.chargepulse.com)" + } + }, + { + "type": "node", + "id": 5819050557, + "lat": 49.1643833, + "lon": -0.4232594, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Bretteville-sur-Odon, Avenue du Fresne", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET132", + "scooter": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 5819987402, + "lat": 49.0965927, + "lon": 5.6273537, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "borne de recharge semi accélérée", + "operator": "Fuclem" + } + }, + { + "type": "node", + "id": 5820125038, + "lat": 43.1521214, + "lon": 6.4255729, + "tags": { + "amenity": "charging_station", + "amperage": "11", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "LE LAVANDOU_Boulevard Des Acacias", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83070*A", + "socket:type2": "2", + "socket:type2_combo": "1", + "socket:typee": "2", + "source": "survey 2018-08", + "voltage": "230" + } + }, + { + "type": "node", + "id": 5820158325, + "lat": 50.9246681, + "lon": 1.8034992, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "name": "Interhotel", + "opening_hours": "24/7", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 5822132530, + "lat": 49.0037026, + "lon": 2.5907503, + "tags": { + "amenity": "charging_station", + "level": "1" + } + }, + { + "type": "node", + "id": 5822161950, + "lat": 46.3812431, + "lon": 3.5916037, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref": "csxv1 ; csxv2", + "ref:EU:EVSE": "FR*EBN*PJALIGNY", + "socket:chademo": "1", + "socket:chademo:output": "22kw", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22kw", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5822709204, + "lat": 49.3899428, + "lon": 1.0597647, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "capacity:beds": "2", + "name": "Novotel", + "opening_hours": "24/7", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5823969407, + "lat": 47.4372917, + "lon": -0.5272378, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Président Vilette", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49246*002", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5823981343, + "lat": 47.4422819, + "lon": -0.5252313, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Pierre De Coubertin", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49246*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5825029583, + "lat": 50.3470861, + "lon": 1.8228121, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "Jardin", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:cb": "yes", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PARGOULESVAL", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5825374955, + "lat": 47.8481859, + "lon": -3.0002429, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue du Vieux Presbytère", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56031*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5826426768, + "lat": 43.1981944, + "lon": 1.7503283, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11033*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5826434455, + "lat": 43.2002726, + "lon": 2.1420002, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11254*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5826434456, + "lat": 43.1852532, + "lon": 2.0346793, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11136*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "https://reveocharge.com/fr/" + } + }, + { + "type": "node", + "id": 5826736325, + "lat": 46.3832827, + "lon": 5.3459644, + "tags": { + "amenity": "charging_station", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5827268378, + "lat": 49.3798021, + "lon": -1.2958761, + "tags": { + "addr:housenumber": "28", + "addr:street": "Le Bout de la Ville", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "E-charge50", + "payment:debit_cards": "yes", + "payment:membership_card": "yes", + "phone": "+33809107584", + "socket:schuko": "2", + "socket:schuko:output": "3.7kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "1", + "socket:type3:output": "22kW", + "truck": "no", + "website": "http://www.e-charge50.fr" + } + }, + { + "type": "node", + "id": 5829025556, + "lat": 46.0830836, + "lon": 6.7285811, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74258*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-06-29", + "website": "http://www.eborn.orios-infos.com" + } + }, + { + "type": "node", + "id": 5829059585, + "lat": 47.0944574, + "lon": 2.2411926, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Bourges Sainte Thorette", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 5829182368, + "lat": 47.2151346, + "lon": -0.6010227, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49153*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5829358742, + "lat": 42.7681226, + "lon": 2.8764264, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66164*002", + "ref:EU:EVSE": "FR*S66*P66164*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5829750953, + "lat": 49.5886797, + "lon": -1.2715847, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "E-charge50", + "payment:debit_cards": "yes", + "payment:membership_card": "yes", + "phone": "+33809107584", + "socket:schuko": "2", + "socket:schuko:output": "3.7kW", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "1", + "socket:type3:output": "22kW", + "truck": "no", + "website": "http://www.e-charge50.fr" + } + }, + { + "type": "node", + "id": 5832140126, + "lat": 49.3723686, + "lon": -1.7906746, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "E-Charge50", + "payment:membership_card": "yes", + "phone": "+33809107584", + "socket:schuko": "2", + "socket:schuko:output": "3.7kW", + "socket:type2": "1", + "socket:type2:output": "9kW", + "socket:type3": "1", + "socket:type3:output": "9kW", + "truck": "no", + "website": "http://www.e-charge50.fr" + } + }, + { + "type": "node", + "id": 5832535577, + "lat": 44.1494796, + "lon": 6.1490681, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04217*A", + "ref:EU:EVSE": "FR*EBN*PJZXFBNTFY9", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5832587722, + "lat": 42.7152148, + "lon": 2.85118, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5834566821, + "lat": 43.0036156, + "lon": -0.1029328, + "tags": { + "amenity": "charging_station", + "amperage": "22", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Argelès-Gazost - Roquette Buisson", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65025*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5834575725, + "lat": 42.9568458, + "lon": -0.210455, + "tags": { + "amenity": "charging_station", + "amperage": "22", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65032*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5836350685, + "lat": 44.5251171, + "lon": 6.4010045, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "free": "yes", + "operator": "Mairie de Savines le lac", + "socket:cee_blue": "6", + "socket:cee_blue:output": "230" + } + }, + { + "type": "node", + "id": 5836350705, + "lat": 44.5250035, + "lon": 6.4007426, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "free": "yes", + "operator": "Mairie de Savines le lac", + "socket:cee_blue": "8", + "socket:cee_blue:output": "230" + } + }, + { + "type": "node", + "id": 5836374928, + "lat": 48.809863, + "lon": 2.1210983, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Electric 55", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 5836882467, + "lat": 43.4090157, + "lon": 3.6975449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Révéo", + "socket:cee_blue": "2", + "socket:type2": "2", + "socket:type3": "3" + } + }, + { + "type": "node", + "id": 5837840197, + "lat": 43.4935485, + "lon": -1.4775203, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*26", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5837974262, + "lat": 45.1735239, + "lon": 6.6531601, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 5838281185, + "lat": 49.051622, + "lon": -1.4536926, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5838286086, + "lat": 44.6750036, + "lon": 6.6159686, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "841423263254282", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05052*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "survey:date": "2018-08-10" + } + }, + { + "type": "node", + "id": 5838798685, + "lat": 42.7675705, + "lon": 2.869791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66164*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5839478285, + "lat": 48.8381164, + "lon": -1.5876785, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "note": "Recharge de voitures électriques (Sdem50)", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 5839511685, + "lat": 48.7743669, + "lon": -1.567313, + "tags": { + "amenity": "charging_station", + "operator": "Recharge de voitures électriques" + } + }, + { + "type": "node", + "id": 5839577250, + "lat": 48.7545805, + "lon": 2.3508825, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Take ticket at parking entrance. First 3 hours are free.", + "motorcar": "yes", + "name": "Novotel", + "opening_hours": "24/7", + "operator": "Evink", + "socket:schuko": "2", + "socket:schuko:output": "3.7kW", + "socket:type2": "2", + "socket:type2:output": "22kW" + } + }, + { + "type": "node", + "id": 5839745705, + "lat": 48.2933284, + "lon": 4.130818, + "tags": { + "access": "yes", + "addr:city": "Saint-Parres-aux-Tertres", + "addr:country": "FR", + "addr:postcode": "10410", + "addr:street": "Zone commerciale de Saint-Parres-aux-Tertres", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "26", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Troyes - Saint-Parres-aux-Tertres Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/saintparresauxtertressupercharger" + } + }, + { + "type": "node", + "id": 5839746451, + "lat": 43.0567548, + "lon": 2.215423, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11206*002", + "socket:type2": "4", + "socket:type3": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 5840097103, + "lat": 44.719623, + "lon": 6.8475949, + "tags": { + "amenity": "charging_station", + "name": "Eborn" + } + }, + { + "type": "node", + "id": 5840097106, + "lat": 44.7196814, + "lon": 6.8475792, + "tags": { + "amenity": "charging_station", + "brand": "bike-energy", + "brand:wikidata": "Q67770877", + "capacity": "4", + "description": "TOWER T4B für 4 E-Bikes;\nDas bike-energy Ladekabel erhalten Sie direkt auf www.bike-energy.com", + "name": "bike-energy Ladestation", + "operator": "bike-energy", + "operator:wikidata": "Q67770877" + } + }, + { + "type": "node", + "id": 5841282029, + "lat": 44.3680637, + "lon": 2.5878514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schneider Electric", + "mapillary": "482146676543674", + "model": "EVlink City", + "operator": "Lidl", + "source": "survey 2018" + } + }, + { + "type": "node", + "id": 5841649004, + "lat": 43.6338314, + "lon": 3.9221882, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34057*002", + "ref:FR:REVEO": "FR-M34-E34057-002-1;FR-M34-E34057-002-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 5843743578, + "lat": 50.1243958, + "lon": 3.6929807, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Pays de Mormal", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H16*P59331001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 5843774630, + "lat": 43.6241924, + "lon": 7.0451987, + "tags": { + "addr:city": "Valbonne", + "addr:place": "Parking Centre Médical médiathèque", + "addr:postcode": "06560", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Valbonne Parking Garbejaïre", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref:EU:EVSE": "FR*A16*P*WIIZ*73*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://wiiiz.fr/portal/#/search" + } + }, + { + "type": "node", + "id": 5843791634, + "lat": 43.6096384, + "lon": 7.0155548, + "tags": { + "addr:city": "Mougins", + "addr:postcode": "06250", + "addr:street": "Allée Pierre de Coubertin", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mougins Parking Salle omnisports de la Font de l'Orme", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*47*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5844009640, + "lat": 45.3609505, + "lon": 0.6480412, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5844011817, + "lat": 45.3648213, + "lon": 0.6476075, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*17", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5844478885, + "lat": 47.1289957, + "lon": -2.2188751, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44136A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5846617194, + "lat": 46.5819687, + "lon": 0.3343261, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5846998297, + "lat": 43.4802653, + "lon": 2.484531, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81238*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5848340141, + "lat": 45.9843268, + "lon": 3.0864209, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "2 place de recharges pour voitures électriques" + } + }, + { + "type": "node", + "id": 5848675786, + "lat": 48.8623689, + "lon": 2.2245311, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5848902087, + "lat": 48.0312611, + "lon": -4.0838715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29SETY", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 5848985885, + "lat": 47.5468016, + "lon": -2.7213298, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Saint-Colombier", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56240*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5848985985, + "lat": 47.6654105, + "lon": -2.7308383, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56260*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5848986285, + "lat": 48.2164147, + "lon": -4.050394, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29EPGSF", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5849496221, + "lat": 43.0314175, + "lon": 1.0203018, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09235*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5849913854, + "lat": 47.8620446, + "lon": -2.5263847, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du souvenir", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56112*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5851194905, + "lat": 45.6209881, + "lon": 5.218958, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "parking:fee": "no", + "ref:EU:EVSE": "FR*EBN*PX12ABRPVCW", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5851818450, + "lat": 42.7098495, + "lon": 3.0359682, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5851967193, + "lat": 43.6258069, + "lon": 3.905598, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34057*005", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 5851967194, + "lat": 43.6233156, + "lon": 3.9141998, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34057*003", + "ref:FR:REVEO": "FR-M34-E34057-003-1;FR-M34-E34057-003-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 5852035858, + "lat": 43.8604677, + "lon": 3.9046115, + "tags": { + "addr:city": "Claret", + "addr:postcode": "34270", + "addr:street": "Place du stade", + "amenity": "charging_station", + "capacity": "2", + "description": "Borne recharge pour voiture électrique", + "fee": "yes", + "motorcar": "yes", + "name": "Borne rechargement électrique", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34078*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5854211868, + "lat": 47.929072, + "lon": -1.7365779, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD351112;FR*S35*PSD351111", + "ref:FR:SDE35": "FR*S35*35033*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5856129523, + "lat": 47.672601, + "lon": 6.5115721, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Intermarché", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07031041", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5857002886, + "lat": 47.6664676, + "lon": -2.9895454, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Athéna", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S56*P56007*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5859252246, + "lat": 47.3909835, + "lon": -1.2941289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44048A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5860633100, + "lat": 48.727197, + "lon": 4.5764852, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Lucien Herr", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*008", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5860633101, + "lat": 48.7184358, + "lon": 4.5875006, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Gare", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5860633102, + "lat": 48.7276523, + "lon": 4.5844246, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Place de la Halle", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5860633103, + "lat": 48.7325583, + "lon": 4.5870253, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Centre Commercial du Hamois", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*006", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5860633104, + "lat": 48.7155247, + "lon": 4.5979453, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Hôpital", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de communes Vitry, Champagne et Der", + "parking:fee": "yes", + "ref:EU:EVSE": "FR*A51*P51649*005", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5861929486, + "lat": 45.7608521, + "lon": 3.1294539, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5862281401, + "lat": 43.4968199, + "lon": 2.3892723, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5863650106, + "lat": 44.7809376, + "lon": 6.8695439, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05003*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5864304015, + "lat": 47.1324585, + "lon": -0.158693, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 5865072671, + "lat": 42.4624507, + "lon": 1.9366944, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "payment:app": "yes", + "payment:debit_cards": "yes", + "ref": "FR*S66*P66218*001", + "ref:EU:EVSE": "FR*S66*P66218*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5865367185, + "lat": 47.5892237, + "lon": -3.0291527, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cours des Quais", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56258*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5867219385, + "lat": 47.4935156, + "lon": 1.6811031, + "tags": { + "amenity": "charging_station", + "operator": "SEE Claude Janvier" + } + }, + { + "type": "node", + "id": 5868451325, + "lat": 48.9849623, + "lon": 2.2568255, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JFWG", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JFWG2" + } + }, + { + "type": "node", + "id": 5868662614, + "lat": 50.6576852, + "lon": 2.7698995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes Flandre-Lys", + "ref:EU:EVSE": "FR*H09*P62736*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5870488685, + "lat": 48.0458968, + "lon": 7.557856, + "tags": { + "amenity": "charging_station", + "operator": "nautique club" + } + }, + { + "type": "node", + "id": 5870953173, + "lat": 47.3403537, + "lon": 0.9849537, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5870953174, + "lat": 47.345935, + "lon": 0.9507476, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5871766874, + "lat": 50.3655521, + "lon": 3.4309464, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Lieu-Saint-Amand", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*POOAD2XGWNN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5871766875, + "lat": 50.3655183, + "lon": 3.4308892, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "12", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Bellaing", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PYIYEOEVU2D", + "socket:type2": "12", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5874314434, + "lat": 48.8706787, + "lon": 2.2317012, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "1", + "motorcar": "yes", + "operator": "EVBOX", + "operator:wikidata": "Q28406392", + "operator:wikipedia": "en:EVBox", + "rating": "7.4 kW", + "support": "pole" + } + }, + { + "type": "node", + "id": 5876441935, + "lat": 49.5950442, + "lon": 0.1303315, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*20*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5876533880, + "lat": 47.5661951, + "lon": -1.6230626, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44113A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5876695155, + "lat": 44.8324868, + "lon": -0.6103747, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "freshmile" + } + }, + { + "type": "node", + "id": 5877939155, + "lat": 45.165149, + "lon": 6.431354, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Hager", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5877953876, + "lat": 44.3856713, + "lon": 6.6503502, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide Place Aimé Gassier", + "opening_hours": "24/7", + "operator": "SDE04-eborn", + "ref": "FR*S04*P04019*B", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "44", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50" + } + }, + { + "type": "node", + "id": 5878225694, + "lat": 49.5301129, + "lon": 0.1050119, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5878234752, + "lat": 49.5006718, + "lon": 0.1278704, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Le Havre" + } + }, + { + "type": "node", + "id": 5879175291, + "lat": 44.4196253, + "lon": 6.7350644, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04096*A", + "ref:EU:EVSE": "FR*EBN*PXQQCZS16EH", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5879529016, + "lat": 45.2829423, + "lon": 4.3948295, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Marcellin Champagnat", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Marlhes", + "ref:EU:EVSE": "FRS42P42139A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5879878385, + "lat": 43.549772, + "lon": 7.0069924, + "tags": { + "addr:street": "Rue Brougham", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Square Mistral", + "network": "wiiiz", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPL", + "ref": "FR*A18*P*WIIZ*8*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*8*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 5881170936, + "lat": 47.3737199, + "lon": -1.9381351, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44195B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5884261586, + "lat": 44.8208702, + "lon": 1.2906067, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*39", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5886943079, + "lat": 44.0633158, + "lon": -1.2271154, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40266*001", + "ref:EU:EVSE": "FR*S40*PMB40*32", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5891177236, + "lat": 44.5349518, + "lon": 5.8274585, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05179*A", + "socket:chademo": "1", + "socket:type2": "3", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5891633719, + "lat": 43.3407554, + "lon": 6.1252871, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Les Ferrages", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83111*A", + "socket:type2": "2", + "socket:type2:current": "100", + "socket:type2:output": "22000", + "socket:typee": "2", + "source": "http://wiiiz.fr/api/front/chargeArea/5b8df2abe4b0b373c2d28987", + "voltage": "220" + } + }, + { + "type": "node", + "id": 5893046634, + "lat": 44.6653833, + "lon": 5.7068181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 5893057287, + "lat": 44.8915437, + "lon": 0.9351312, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5893310910, + "lat": 47.2345072, + "lon": 5.9012938, + "tags": { + "access": "customers", + "addr:city": "Chemaudin et Vaux", + "addr:country": "FR", + "addr:housenumber": "1 bis", + "addr:postcode": "25770", + "addr:street": "rue Victor Considérant", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Besançon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/besanconfrsupercharger" + } + }, + { + "type": "node", + "id": 5894480584, + "lat": 48.2772586, + "lon": -3.5762741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ouest Charge" + } + }, + { + "type": "node", + "id": 5894513592, + "lat": 46.4518229, + "lon": 4.1186406, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7", + "operator": "Sydesl", + "source": "Observations personnelles" + } + }, + { + "type": "node", + "id": 5895860789, + "lat": 45.0631814, + "lon": 1.245455, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*96", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5896898626, + "lat": 42.7549607, + "lon": 2.8569121, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805022347", + "ref:EU:EVSE": "FR*S66*P66138001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 5897361618, + "lat": 44.4386817, + "lon": 4.6254245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07279*A", + "ref:EU:EVSE": "FR*EBN*PBPQKMWBSOI", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5899208842, + "lat": 48.9770755, + "lon": 2.1991605, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://mon.freshmile.com" + } + }, + { + "type": "node", + "id": 5899715575, + "lat": 44.8653041, + "lon": -0.5770806, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "motorcar": "yes", + "operator": "bluecub" + } + }, + { + "type": "node", + "id": 5899934989, + "lat": 44.3516755, + "lon": 4.3999211, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07113*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5900120675, + "lat": 42.7684169, + "lon": 2.6561911, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66096*001", + "ref:EU:EVSE": "FR*S66*P66096*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5902329409, + "lat": 44.5621524, + "lon": 6.4926032, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05046*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5903862497, + "lat": 44.0928354, + "lon": 6.2305077, + "tags": { + "amenity": "charging_station", + "operator": "SDE04" + } + }, + { + "type": "node", + "id": 5904566721, + "lat": 48.832631, + "lon": -3.5135825, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 5904879283, + "lat": 44.6158674, + "lon": 5.4508348, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26167*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5905939284, + "lat": 43.5775337, + "lon": 7.0163609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking des Moulières", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*83*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5908799134, + "lat": 43.5832465, + "lon": 1.346774, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Impasse Max Baylac", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31557*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5911114903, + "lat": 43.2452584, + "lon": 5.4121976, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13055*003", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5912306485, + "lat": 47.468639, + "lon": -0.5592774, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place de L'Académie", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*009", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5912317485, + "lat": 47.4649676, + "lon": -0.554085, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Turpin de Crisse", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*011", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5912317486, + "lat": 47.4629126, + "lon": -0.5530093, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Lafayette", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*006", + "socket:type2": "2", + "socket:type3": "1", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5912411263, + "lat": 47.4803839, + "lon": -0.5434685, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Ney - Place R. Toublanc", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*007", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5912706769, + "lat": 47.6601672, + "lon": -2.4520465, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56184*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5913630902, + "lat": 45.8990872, + "lon": 6.1220564, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Rue de la Gare", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*G", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5913684844, + "lat": 43.8218466, + "lon": 4.3687672, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30189*017", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5913750405, + "lat": 44.447738, + "lon": 4.3070021, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref:EU:EVSE": "FR*EBN*PIAYB6RCTET", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5914442487, + "lat": 45.8992699, + "lon": 6.1144631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Place de la Mandallaz", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5914445959, + "lat": 45.9011084, + "lon": 6.1152025, + "tags": { + "amenity": "charging_station", + "level": "0", + "parking:fee": "yes", + "socket:type3c": "2", + "socket:type3c:output": "22kW" + } + }, + { + "type": "node", + "id": 5914445960, + "lat": 45.901818, + "lon": 6.12145, + "tags": { + "amenity": "charging_station", + "capacity": "22", + "description": "Accélérée 22 kW" + } + }, + { + "type": "node", + "id": 5914451316, + "lat": 45.9031762, + "lon": 6.1221619, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "description": "Standard 3 kW" + } + }, + { + "type": "node", + "id": 5914470507, + "lat": 45.9029765, + "lon": 6.1245203, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Accélérée 22 kW", + "note": "Dans le parking Carnot" + } + }, + { + "type": "node", + "id": 5914470508, + "lat": 45.9026526, + "lon": 6.12963, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Bonlieu", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*H", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5914470509, + "lat": 45.9021384, + "lon": 6.129822, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Bonlieu", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*H", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5914470510, + "lat": 45.9041257, + "lon": 6.1441133, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "description": "Semi Accélérée 7 - 11 kW" + } + }, + { + "type": "node", + "id": 5914481553, + "lat": 45.9078308, + "lon": 6.1366661, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Route de Vignières", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*E", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5914495956, + "lat": 45.9123399, + "lon": 6.129333, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Annecy - Rue de la Fraternité", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*K", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5914495957, + "lat": 45.9157054, + "lon": 6.1201581, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Rue Baron Pierre de Coubertin", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5914495958, + "lat": 45.9193568, + "lon": 6.1287318, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "description": "Standard 3 kW" + } + }, + { + "type": "node", + "id": 5914495959, + "lat": 45.9207157, + "lon": 6.1307469, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "description": "Standard 3 kW" + } + }, + { + "type": "node", + "id": 5914512284, + "lat": 45.9311538, + "lon": 6.1649063, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "description": "Standard 3 kW" + } + }, + { + "type": "node", + "id": 5916780871, + "lat": 43.5876016, + "lon": 7.0379015, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mougins Centre sportif de Mougins le Haut", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*45*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5917997146, + "lat": 47.6820558, + "lon": -2.4496935, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Prise T2 CHAdeMO Combo EU", + "fee": "no", + "motorcar": "yes", + "name": "Avenue de la Gare", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56184*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5920204483, + "lat": 43.4552496, + "lon": 5.3164066, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 5920204484, + "lat": 43.455255, + "lon": 5.3164359, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 5920397344, + "lat": 42.6963065, + "lon": 2.7688112, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66140*001", + "ref:EU:EVSE": "FR*S66*P66140*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5921350173, + "lat": 43.8514334, + "lon": -1.3848047, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40187*002", + "ref:EU:EVSE": "FR*S40*PMB40*16", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5921465689, + "lat": 43.118445, + "lon": 1.6142285, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09225*003", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 5922197383, + "lat": 49.2798047, + "lon": 2.47436, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Mouv'Oise", + "ref:EU:EVSE": "FR*S60*PVWGFNR", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5922610345, + "lat": 45.0492108, + "lon": 5.0502663, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26281*G", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5922730621, + "lat": 43.5753867, + "lon": 7.0185376, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking Rue des Orangers", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*88*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5922734283, + "lat": 43.5929172, + "lon": 7.0561043, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fixme": "access=private ?", + "operator": "Wiiiz" + } + }, + { + "type": "node", + "id": 5924113185, + "lat": 47.1002857, + "lon": 6.1607447, + "tags": { + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 5927307108, + "lat": 43.605527, + "lon": 7.0762031, + "tags": { + "addr:street": "Rue Henri Laugier", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Antibes Azur Arena", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*11*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*11*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 5930845977, + "lat": 47.0899912, + "lon": 5.4879483, + "tags": { + "access": "private", + "amenity": "charging_station", + "operator": "Communauté d'Agglomération du Grand Dole" + } + }, + { + "type": "node", + "id": 5932169517, + "lat": 47.5426958, + "lon": -0.6760937, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Bellay", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49242*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5932563729, + "lat": 47.5608613, + "lon": -0.6716023, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Du Cimetière", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49200*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5932563730, + "lat": 47.5185511, + "lon": -0.666761, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Angers", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49196*001", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5934117678, + "lat": 47.0960297, + "lon": 5.4891793, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "operator": "Grand Dole", + "operator:type": "public", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "2.3 kW" + } + }, + { + "type": "node", + "id": 5937147761, + "lat": 47.4613706, + "lon": -1.2779514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44202A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5937694218, + "lat": 44.8950408, + "lon": 1.4799614, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Pierre Bourthoumieux", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46309*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5937694219, + "lat": 44.8950405, + "lon": 1.4799938, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Pierre Bourthoumieux", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46309*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5938274989, + "lat": 43.6179545, + "lon": 6.7652297, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montauroux - Place Du Clos", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83081*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5939312463, + "lat": 45.0662858, + "lon": 4.6954301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "494726225174544", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07069*A", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2019-10-02" + } + }, + { + "type": "node", + "id": 5942486806, + "lat": 48.9912568, + "lon": 2.2228736, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "KURB", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/KURB1" + } + }, + { + "type": "node", + "id": 5944691366, + "lat": 48.9940293, + "lon": 2.2338505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Val Parisis Agglo", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5944691367, + "lat": 48.994023, + "lon": 2.2338877, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Val Parisis Agglo", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 5948573420, + "lat": 46.1661506, + "lon": 1.8529089, + "tags": { + "amenity": "charging_station", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Parking de Courtille", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5948573421, + "lat": 46.1683354, + "lon": 1.8721337, + "tags": { + "amenity": "charging_station", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Place Bonnyaud", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5948573422, + "lat": 46.1271539, + "lon": 1.8895681, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Parc animalier des monts de Guéret", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5948573423, + "lat": 46.1393045, + "lon": 1.9151058, + "tags": { + "amenity": "charging_station", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Mairie de Sainte-Feyre", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5948573424, + "lat": 46.2043661, + "lon": 1.7562338, + "tags": { + "amenity": "charging_station", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Mairie de Saint-Vaury", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5948573425, + "lat": 46.1824877, + "lon": 1.847191, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Aire des monts de Guéret", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5948573426, + "lat": 46.1806486, + "lon": 1.8746188, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Creuse - Espace André Lejeune", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 5951209391, + "lat": 44.5467015, + "lon": 6.2711456, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide Chorges", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05040*C", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "44", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50" + } + }, + { + "type": "node", + "id": 5952630711, + "lat": 44.8987073, + "lon": 1.4618196, + "tags": { + "amenity": "charging_station", + "capacity": "8" + } + }, + { + "type": "node", + "id": 5961207654, + "lat": 43.6075791, + "lon": 6.9134951, + "tags": { + "addr:street": "Rue Jean Giono", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Auribeau-sur-Siagne Parking du Bayle", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*20*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*20*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 5961339154, + "lat": 44.5638393, + "lon": 4.3631159, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn - SDE07", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07122*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.orios-infos.com/" + } + }, + { + "type": "node", + "id": 5965828424, + "lat": 43.4552615, + "lon": 5.3164664, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 5965828425, + "lat": 43.455267, + "lon": 5.3164942, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 5968579946, + "lat": 47.9383033, + "lon": -2.40506, + "tags": { + "amenity": "charging_station", + "description": "six bornes de recharge" + } + }, + { + "type": "node", + "id": 5971588801, + "lat": 48.7276305, + "lon": -3.456327, + "tags": { + "amenity": "charging_station", + "charging_station": "2" + } + }, + { + "type": "node", + "id": 5972511949, + "lat": 43.6922267, + "lon": -1.3302496, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Evtronic", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "payment:credit_cards": "yes", + "ref": "MAT-013261", + "ref:EU:EVSE": "FR*S40*PMB40*90", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5973194663, + "lat": 45.3996534, + "lon": 5.4203247, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38182*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400", + "website": "https://www.orios-idcharge.com/" + } + }, + { + "type": "node", + "id": 5976089988, + "lat": 43.8627459, + "lon": 6.1271589, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04157*A", + "ref:EU:EVSE": "FR*EBN*PKDUPPQ", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5979519896, + "lat": 47.4016861, + "lon": -0.2699107, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49201*001", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 5979627325, + "lat": 48.8558574, + "lon": 2.7433065, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ZAE des Gassets", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "311", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5980930763, + "lat": 49.1281894, + "lon": 6.7098949, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 5981997902, + "lat": 44.3312894, + "lon": 4.7908877, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Parking des Cornettes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26326*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5982988785, + "lat": 48.9911309, + "lon": 2.2613942, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JPRJ", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JPRJ1" + } + }, + { + "type": "node", + "id": 5983117628, + "lat": 47.791327, + "lon": 1.0739872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41269-88", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5983120965, + "lat": 45.2711169, + "lon": 5.9650067, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38002*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 5983980262, + "lat": 47.2665043, + "lon": -0.0942877, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "opening_hours": "24/7", + "operator": "Siéml", + "owner": "SIEML 49", + "ref:EU:EVSE": "FR*S49*P49328*005", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 5984704751, + "lat": 48.8125825, + "lon": 2.307243, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*002", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 5984843764, + "lat": 43.6372765, + "lon": 6.932819, + "tags": { + "addr:street": "Chemin du Grand Chêne", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Stade Perdigon", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*16*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*16*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 5986637591, + "lat": 48.8174212, + "lon": 2.3180104, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*003", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 5989498131, + "lat": 45.9402786, + "lon": 4.7801201, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5989851179, + "lat": 47.8949687, + "lon": -1.7491486, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35221*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989851181, + "lat": 48.1784926, + "lon": -1.301601, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35347*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989851182, + "lat": 48.5652167, + "lon": -1.9231999, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35306*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989851183, + "lat": 48.3533973, + "lon": -1.2013158, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35115*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989851184, + "lat": 48.2612373, + "lon": -1.6064306, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD357511;FR*S35*PSD357512", + "ref:FR:SDE35": "FR*S35*35251*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875285, + "lat": 48.1244157, + "lon": -1.2093144, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35360*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875286, + "lat": 48.0499932, + "lon": -1.8678481, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD351212;FR*S35*PSD351211", + "ref:FR:SDE35": "FR*S35*35037*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875287, + "lat": 47.8919972, + "lon": -1.9898573, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35168*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875288, + "lat": 48.4560234, + "lon": -1.4804746, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35004*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875289, + "lat": 48.2137529, + "lon": -1.5050128, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35152*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875290, + "lat": 48.533056, + "lon": -1.5645651, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35222*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875291, + "lat": 48.3677156, + "lon": -1.2176796, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35150*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875292, + "lat": 48.3727872, + "lon": -1.8755574, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD357911;FR*S35*PSD357912", + "ref:FR:SDE35": "FR*S35*35265*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875293, + "lat": 48.5473718, + "lon": -1.7544733, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35095*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875294, + "lat": 48.2466157, + "lon": -1.7263238, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD355611;FR*S35*PSD355612", + "ref:FR:SDE35": "FR*S35*35193*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875295, + "lat": 48.4271759, + "lon": -1.5748867, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35019*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875296, + "lat": 47.7761783, + "lon": -2.0806291, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35328*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875297, + "lat": 48.4463524, + "lon": -1.9103992, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD359411;FR*S35*PSD359412", + "ref:FR:SDE35": "FR*S35*35308*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875298, + "lat": 47.9590668, + "lon": -1.4946994, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35136*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875299, + "lat": 48.6752126, + "lon": -1.9137811, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35263*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875300, + "lat": 47.8090787, + "lon": -1.9353541, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35219*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875301, + "lat": 48.3341064, + "lon": -1.5374812, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD359612;FR*S35*PSD359611", + "ref:FR:SDE35": "FR*S35*35326*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875302, + "lat": 47.7622137, + "lon": -1.6878018, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35098*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875303, + "lat": 48.6367261, + "lon": -2.0129935, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35288*05", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875304, + "lat": 48.2163678, + "lon": -1.6978142, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD355112;FR*S35*PSD355111", + "ref:FR:SDE35": "FR*S35*35173*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875305, + "lat": 47.8251138, + "lon": -1.8442971, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35176*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875306, + "lat": 47.8320643, + "lon": -1.3200103, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35167*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875307, + "lat": 48.517096, + "lon": -1.9039196, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35179*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875308, + "lat": 47.7054592, + "lon": -2.0701713, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35013*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875309, + "lat": 48.6359619, + "lon": -2.0226844, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "10", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35288*04", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875310, + "lat": 47.9656298, + "lon": -1.7973338, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD353211;FR*S35*PSD353212", + "ref:FR:SDE35": "FR*S35*35126*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875311, + "lat": 47.9418144, + "lon": -1.233334, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35125*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875312, + "lat": 48.1228398, + "lon": -1.2112929, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35360*03", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875313, + "lat": 48.6039585, + "lon": -1.9761353, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35284*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875314, + "lat": 48.1116821, + "lon": -1.3866957, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35068*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875315, + "lat": 48.3553784, + "lon": -1.2109054, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fixme": "Emplacement à valider.", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35115*03", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875316, + "lat": 47.9519026, + "lon": -1.4895529, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35136*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875317, + "lat": 48.6221361, + "lon": -2.0548934, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD352412;FR*S35*PSD352411", + "ref:FR:SDE35": "FR*S35*35093*02", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875318, + "lat": 48.0083919, + "lon": -1.4300381, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fixme": "Position à priori approximative", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35220*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875319, + "lat": 48.1852218, + "lon": -1.4398289, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35031*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875320, + "lat": 47.6496281, + "lon": -2.087832, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35236*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875321, + "lat": 47.9149022, + "lon": -1.3816537, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35239*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875322, + "lat": 48.0576339, + "lon": -1.15177, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35006*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875323, + "lat": 48.1085937, + "lon": -1.2181745, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "6", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35360*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875324, + "lat": 48.6314689, + "lon": -2.0582472, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "fixme": "Position exacte à vérifier", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD352512;FR*S35*PSD352511", + "ref:FR:SDE35": "FR*S35*35093*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875325, + "lat": 48.1046685, + "lon": -1.4138599, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35068*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875326, + "lat": 48.5598804, + "lon": -1.9289781, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35070*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875327, + "lat": 48.190876, + "lon": -2.1918895, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD359012;FR*S35*PSD359011", + "ref:FR:SDE35": "FR*S35*35297*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875328, + "lat": 48.6459147, + "lon": -2.0066839, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35288*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875329, + "lat": 48.250106, + "lon": -1.9510437, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD353611;FR*S35*PSD353612", + "ref:FR:SDE35": "FR*S35*35135*01", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875331, + "lat": 48.0663533, + "lon": -1.19409, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35109*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875332, + "lat": 48.3384341, + "lon": -1.301428, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35310*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875333, + "lat": 48.6074756, + "lon": -2.0361959, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD354311;FR*S35*PSD354312", + "ref:FR:SDE35": "FR*S35*35241*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875334, + "lat": 48.5881406, + "lon": -1.9242864, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35306*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875335, + "lat": 48.3283895, + "lon": -1.8389348, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD359911", + "ref:FR:SDE35": "FR*S35*35337*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875336, + "lat": 48.6509331, + "lon": -2.0211055, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:EU:EVSE": "FR*S35*35288*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875337, + "lat": 48.005996, + "lon": -2.0893436, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD356311;FR*S35*PSD356312", + "ref:FR:SDE35": "FR*S35*35223*01", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875338, + "lat": 48.1313193, + "lon": -1.594613, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD359811;FR*S35*PSD359812", + "ref:FR:SDE35": "FR*S35*35334*01", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875339, + "lat": 48.2598896, + "lon": -1.4003217, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35253*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875340, + "lat": 48.343755, + "lon": -1.2746417, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35243*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875341, + "lat": 47.67288, + "lon": -2.0669846, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35236*03", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875342, + "lat": 48.6237692, + "lon": -2.0661953, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD352312;FR*S35*PSD352311", + "ref:FR:SDE35": "FR*S35*35093*03", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875343, + "lat": 48.1149227, + "lon": -1.5228904, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35207*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875344, + "lat": 47.6527876, + "lon": -2.0925249, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35236*02", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5989875345, + "lat": 48.658089, + "lon": -1.9818998, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35288*03", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875346, + "lat": 48.0493175, + "lon": -1.5014601, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35069*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2016" + } + }, + { + "type": "node", + "id": 5989875348, + "lat": 48.6324988, + "lon": -2.1033197, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE35", + "ref:FR:SDE35": "FR*S35*35287*01", + "source": "Syndicat Départemental d'Énergie 35 - Octobre 2018", + "start_date": "2017" + } + }, + { + "type": "node", + "id": 5991567583, + "lat": 43.639103, + "lon": 6.911085, + "tags": { + "addr:street": "Route d'Auribeau", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking la Chesnaie", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*64*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*64*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 5992451864, + "lat": 48.2684224, + "lon": 7.5233775, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 5992780990, + "lat": 49.2007887, + "lon": -0.390914, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "operator": "SAP Labs France" + } + }, + { + "type": "node", + "id": 5992780991, + "lat": 49.200799, + "lon": -0.3909763, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4", + "operator": "SAP Labs France" + } + }, + { + "type": "node", + "id": 5995365476, + "lat": 47.3422993, + "lon": -1.5270862, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44201A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 5997433757, + "lat": 47.9450576, + "lon": 1.9186675, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 5997649684, + "lat": 43.3471715, + "lon": -1.772403, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*62", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6001077806, + "lat": 48.7666459, + "lon": 5.1592003, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6001376460, + "lat": 49.4470161, + "lon": 1.1075304, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*003" + } + }, + { + "type": "node", + "id": 6001628527, + "lat": 48.9602998, + "lon": 2.0695452, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Achères - Place de la Jamais Contente", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 6001628528, + "lat": 48.9625999, + "lon": 2.0588245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 6001628529, + "lat": 48.9619717, + "lon": 2.057354, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no" + } + }, + { + "type": "node", + "id": 6002810802, + "lat": 43.8709036, + "lon": 4.098168, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30349*001", + "ref:EU:EVSE": "FR*S30*P30349*001", + "socket:chademo": "1", + "socket:chademo:output": "36", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:type2_combo:output": "36", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6005275997, + "lat": 47.794633, + "lon": -4.2768903, + "tags": { + "addr:place": "Parking de la Pointe, Léchiagat", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29HMLG", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6005846978, + "lat": 50.2692231, + "lon": 1.5900269, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "IRVE80", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "ID:HDGS1", + "ref:EU:EVSE": "FR*S80*PXRQKGG", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 6005938677, + "lat": 48.1218443, + "lon": -1.6348194, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6007049067, + "lat": 44.9168868, + "lon": -0.2368866, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33243*001", + "ref:EU:EVSE": "FR*S33*PMB33*84", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6007049258, + "lat": 44.9469713, + "lon": -0.2445188, + "tags": { + "addr:city": "Libourne", + "addr:street": "Rue de Schwandorf", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "1", + "description": "Infrastructures de Recharge pour Véhicules Électriques, MObiVE. MObiVE est un réseau public de bornes de recharge de véhicules électriques déployées sur les départements de Dordogne, Gironde, Landes, Lot-et-Garonne et Pyrénées-Atlantiques.", + "fee": "yes", + "motorcar": "yes", + "name": "MObiVE", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33243*005", + "ref:EU:EVSE": "FR*S33*PMB33*152", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "43", + "socket:type2_combo": "1", + "socket:typee": "1", + "socket:typee:output": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6007086427, + "lat": 44.9415433, + "lon": -0.2335952, + "tags": { + "addr:city": "Libourne", + "addr:street": "Avenue de la Ballastière", + "amenity": "charging_station", + "description": "Borne de recharge électrique privée appartenant au groupe Schneider Electric", + "operator": "Schneider Electric" + } + }, + { + "type": "node", + "id": 6012540892, + "lat": 43.5917753, + "lon": 7.0360669, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Izivia", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 6012609052, + "lat": 44.9115709, + "lon": -0.2413241, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*83", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6012617076, + "lat": 44.914299, + "lon": -0.2436583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*85", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6012624287, + "lat": 44.9179335, + "lon": -0.2414629, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6016269202, + "lat": 44.7265856, + "lon": 5.0206715, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26108*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6017391654, + "lat": 47.8408955, + "lon": -0.3328849, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SABLE SUR SARTHE", + "ref:EU:EVSE": "FR*V07*P72264*004", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6017391655, + "lat": 47.8403547, + "lon": -0.3363865, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SABLE SUR SARTHE", + "ref:EU:EVSE": "FR*V07*P72264*002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6017391656, + "lat": 47.8389865, + "lon": -0.3283278, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SABLE SUR SARTHE", + "ref:EU:EVSE": "FR*V07*P72264*003", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6017903153, + "lat": 43.5691145, + "lon": 6.9937988, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking Buffon", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*89*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6019010690, + "lat": 47.8414024, + "lon": -0.3428125, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SABLE SUR SARTHE", + "ref:EU:EVSE": "FR*V07*P72264*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6021586680, + "lat": 48.9337453, + "lon": 2.3065228, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "operator:wikidata": "Q3508360", + "operator:wikipedia": "fr:Syndicat intercommunal pour le gaz et l'électricité en Île-de-France", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 6023247049, + "lat": 43.0979512, + "lon": 5.8120412, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6023247050, + "lat": 43.0751023, + "lon": 5.8052083, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SIX FOURS LES PLAGES_157 Avenue du Mail", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83129*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6027298879, + "lat": 49.9505662, + "lon": 1.1641915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*55*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6027994385, + "lat": 44.8597177, + "lon": -0.5575815, + "tags": { + "amenity": "charging_station", + "operator": "bluecub" + } + }, + { + "type": "node", + "id": 6028394410, + "lat": 47.4607407, + "lon": -0.6163698, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6029207266, + "lat": 48.4037094, + "lon": 3.7366975, + "tags": { + "amenity": "charging_station", + "brand": "IRVE SDEA", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "operator": "INEO TINEA", + "owner": "SDEA10", + "ref:EU:EVSE": "FR*S10*P10224A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6032283566, + "lat": 43.6252282, + "lon": 7.0615618, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6032743190, + "lat": 49.1041878, + "lon": 7.0727852, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "EVlink / Tesla", + "socket:type2": "4", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6034897835, + "lat": 43.577135, + "lon": 6.9980052, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Wiiiz" + } + }, + { + "type": "node", + "id": 6034911128, + "lat": 43.5665607, + "lon": 6.9682406, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking mairie annexe Les Paradisiers", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*87*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6035102991, + "lat": 44.6632903, + "lon": -1.1723498, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33009*001", + "ref:EU:EVSE": "FR*S33*PMB33*4", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6035977973, + "lat": 45.5432235, + "lon": 5.5233926, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38357*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6035991201, + "lat": 45.5629757, + "lon": 5.4430919, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38509*B", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036001932, + "lat": 45.5365705, + "lon": 5.5851823, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38001*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036006373, + "lat": 45.581704, + "lon": 5.4167416, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38341*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036006391, + "lat": 45.5346689, + "lon": 5.6714398, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38315*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "utilisateur terrain", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036085269, + "lat": 45.852518, + "lon": 5.3373624, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38026*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036096634, + "lat": 45.8130761, + "lon": 5.4077531, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38247*A", + "ref:EU:EVSE": "FR*S38*P38247*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036098586, + "lat": 45.7682817, + "lon": 5.1977268, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38097*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036101851, + "lat": 45.7571322, + "lon": 5.2210761, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38451*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036106639, + "lat": 45.7252272, + "lon": 5.2464773, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38138*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6036106891, + "lat": 45.7589726, + "lon": 5.2544153, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38210*A", + "ref:EU:EVSE": "FR*S38*P38210*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6039835116, + "lat": 47.475748, + "lon": -0.6408029, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Salle Le Domino", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49020*002", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6039861624, + "lat": 48.0655552, + "lon": -0.771611, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place de Hercé", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S53*P53130*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "voltage": "18" + } + }, + { + "type": "node", + "id": 6039861625, + "lat": 48.0743903, + "lon": -0.7613759, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "Vérifier l'emplacement exact", + "motorcar": "yes", + "name": "Avenue Robert Buron", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53130*002", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "voltage": "18" + } + }, + { + "type": "node", + "id": 6039861626, + "lat": 48.0776663, + "lon": -0.7710853, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Vieux Saint-Louis", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S53*P53130*003", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "voltage": "18" + } + }, + { + "type": "node", + "id": 6040398065, + "lat": 48.9236334, + "lon": 2.209007, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "mapillary": "1879462005553921", + "survey:date": "2019-11-07" + } + }, + { + "type": "node", + "id": 6041507233, + "lat": 44.9223263, + "lon": 0.9258816, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24067*002", + "ref:EU:EVSE": "FR*S24*PMB24*51", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6044832171, + "lat": 43.568908, + "lon": 7.1099466, + "tags": { + "addr:street": "Avenue Guy de Maupassant", + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Antibes Parking Maupassant", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*4*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*4*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6046665314, + "lat": 47.3472224, + "lon": 6.3380062, + "tags": { + "amenity": "charging_station", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 6046665315, + "lat": 47.3472158, + "lon": 6.3379831, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 6046882894, + "lat": 47.6298096, + "lon": 6.172644, + "tags": { + "amenity": "charging_station", + "amperage": "32A", + "operator": "Renault", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 6046923736, + "lat": 47.4665625, + "lon": 6.2579305, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Mairie", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07035785", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6051245043, + "lat": 43.6071834, + "lon": 3.8913559, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "charging_station:output": "50 kVA", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*025", + "ref:FR:REVEO": "FR-M34-E34172-025-1;FR-M34-E34172-025-2;FR-M34-E34172-025-3;FR-M34-E34172-025-4", + "socket:chademo": "1", + "socket:chademo:output": "50 kVA", + "socket:type2": "1", + "socket:type2:output": "36 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kVA", + "socket:typee": "1", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6051245044, + "lat": 43.600062, + "lon": 3.8949758, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "charging_station:output": "50 kVA", + "fee": "yes", + "manufacturer": "G2mobility", + "mapillary": "955396941877038", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*024", + "ref:FR:REVEO": "FR-M34-E34172-024-1;FR-M34-E34172-024-2;FR-M34-E34172-024-3;FR-M34-E34172-024-4", + "socket:chademo": "1", + "socket:chademo:output": "50 kVA", + "socket:type2": "1", + "socket:type2:output": "36 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kVA", + "socket:typee": "1", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6051787018, + "lat": 48.964554, + "lon": 2.1913539, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "website": "https://mon.freshmile.com" + } + }, + { + "type": "node", + "id": 6051903585, + "lat": 47.6529152, + "lon": -2.0940504, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6052497817, + "lat": 45.6796679, + "lon": 5.1682037, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38067*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052500329, + "lat": 45.6678577, + "lon": 5.0862786, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38184*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052533637, + "lat": 45.6393258, + "lon": 5.3625847, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38374*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052545549, + "lat": 45.6740892, + "lon": 5.473311, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38261*A", + "ref:EU:EVSE": "FR*S38*P38261*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052550217, + "lat": 45.6871511, + "lon": 5.3196667, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38515*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052558649, + "lat": 45.6513083, + "lon": 5.4706255, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38543*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052560344, + "lat": 45.5874176, + "lon": 5.6078855, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38012*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052562241, + "lat": 45.6098872, + "lon": 5.5039975, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38148*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052964094, + "lat": 45.6127315, + "lon": 5.0165941, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38519*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052981728, + "lat": 45.6308928, + "lon": 5.063852, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38189*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052982268, + "lat": 45.5539076, + "lon": 5.0038272, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38480*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052996482, + "lat": 45.5589165, + "lon": 4.8441285, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38487*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6052999622, + "lat": 45.5052707, + "lon": 4.911287, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38199*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053002488, + "lat": 45.4384631, + "lon": 4.770754, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38378*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053005699, + "lat": 45.39643, + "lon": 4.7745647, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38425*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053008096, + "lat": 45.4206426, + "lon": 4.9014741, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38536*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053020522, + "lat": 45.4408542, + "lon": 5.006496, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38134*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053033835, + "lat": 45.497438, + "lon": 5.1401076, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38399*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053040620, + "lat": 45.3918526, + "lon": 5.2606655, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38130*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053053424, + "lat": 45.549319, + "lon": 5.2231313, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38136*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053057244, + "lat": 45.5593823, + "lon": 5.2861243, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38230*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053070603, + "lat": 45.5444013, + "lon": 5.3984177, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38464*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6053377493, + "lat": 43.5568762, + "lon": 7.013914, + "tags": { + "addr:street": "Avenue Saint-Louis", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Saint-Louis", + "network": "wiiiz", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*1*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6057068217, + "lat": 43.3030022, + "lon": -0.3705122, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "3,5 EUR", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "payment:cash": "no", + "payment:credit_cards": "yes", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S64*PMB64*99", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6058325424, + "lat": 47.5031263, + "lon": 4.0355242, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "Aire de la Chaponne", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 6062102191, + "lat": 43.5972471, + "lon": 1.4447083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "136396751817331", + "motorcar": "yes", + "name": "Toulouse - Carmes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*006", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6065730055, + "lat": 43.3325367, + "lon": -0.3661606, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "MobiVE - Pau Zénith", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*97", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6066561646, + "lat": 46.1247456, + "lon": 3.4349382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PVICHY1", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "survey", + "start_date": "2016", + "survey:date": "2022-05-21", + "wikimedia_commons": "File:Borne de charge véhicules électriques parking près de l'hôpital (Vichy) 2022-05-21.JPG" + } + }, + { + "type": "node", + "id": 6068131045, + "lat": 45.4906828, + "lon": 5.3893413, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38044*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068140380, + "lat": 45.485344, + "lon": 5.4763587, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38560*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068147614, + "lat": 45.4431539, + "lon": 5.424132, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38065*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068158710, + "lat": 45.4283735, + "lon": 5.5137332, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38082*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068173801, + "lat": 45.3890757, + "lon": 5.7374281, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38412*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068179677, + "lat": 45.4153973, + "lon": 5.8544449, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "eborn", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38446*A", + "ref:EU:EVSE": "FR*S38*P38446*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068182212, + "lat": 45.3414396, + "lon": 5.8154533, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "eborn", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38442*A", + "ref:EU:EVSE": "FR*S38*P38442*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068197129, + "lat": 45.3681666, + "lon": 5.5880767, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38563*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068214903, + "lat": 45.328231, + "lon": 5.5641635, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38239*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068239080, + "lat": 45.3907498, + "lon": 5.3619833, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38174*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068815381, + "lat": 45.3407048, + "lon": 5.3440681, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38384*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068831199, + "lat": 45.2584806, + "lon": 5.2409509, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38347*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068838707, + "lat": 45.3390118, + "lon": 5.0570144, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI", + "parking:fee": "no", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PYTBQSB", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "https://www.data.gouv.fr/fr/datasets/fichier-consolide-des-bornes-de-recharge-pour-vehicules-electriques/", + "source:date": "2023-01-23", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068844608, + "lat": 45.2927025, + "lon": 5.0414358, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S26*P26162*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068849031, + "lat": 45.3393631, + "lon": 4.8566966, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI", + "parking:fee": "no", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PMNCBAF", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "https://www.data.gouv.fr/fr/datasets/fichier-consolide-des-bornes-de-recharge-pour-vehicules-electriques/", + "source:date": "2023-01-30", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068854612, + "lat": 45.3499323, + "lon": 4.8040912, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38468*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068880554, + "lat": 45.3621175, + "lon": 4.802331, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38344*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068896196, + "lat": 45.2081132, + "lon": 5.4109436, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38559*C", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068903138, + "lat": 45.2231788, + "lon": 5.4396372, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38004*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068920206, + "lat": 45.2955129, + "lon": 5.4827665, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38517*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068926495, + "lat": 45.2794558, + "lon": 5.5397268, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38450*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068947748, + "lat": 45.2958452, + "lon": 5.6375293, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38565*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068977843, + "lat": 45.432289, + "lon": 6.0204525, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38314*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068980827, + "lat": 45.3927402, + "lon": 6.0760718, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38006*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068981578, + "lat": 45.3761587, + "lon": 6.0485262, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38439*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068985276, + "lat": 45.3719033, + "lon": 5.9902431, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38100*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068991454, + "lat": 45.2996557, + "lon": 5.9925317, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38504*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6068998478, + "lat": 45.2529959, + "lon": 5.9324556, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38206*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069011354, + "lat": 45.2383358, + "lon": 5.8887912, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38547*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069016747, + "lat": 45.309868, + "lon": 5.8873938, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38395*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069021350, + "lat": 45.283238, + "lon": 5.8812019, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38140*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069024218, + "lat": 45.2703228, + "lon": 5.867583, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38039*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069025656, + "lat": 45.2406286, + "lon": 5.8212398, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38397*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069031250, + "lat": 45.2270128, + "lon": 5.8029685, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38429*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6069095866, + "lat": 48.0850101, + "lon": -1.6289432, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 6070102776, + "lat": 44.7579084, + "lon": 5.6784967, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38204*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070104832, + "lat": 44.8171405, + "lon": 5.7537692, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38226*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070109154, + "lat": 44.8587536, + "lon": 5.9769628, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38469*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070110661, + "lat": 44.817211, + "lon": 5.947707, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38128*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070125439, + "lat": 44.9001642, + "lon": 5.9080911, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38518*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070136176, + "lat": 44.9154015, + "lon": 5.6336508, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38242*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070136285, + "lat": 44.907221, + "lon": 5.6712748, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38513*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070141307, + "lat": 44.9025358, + "lon": 5.5686233, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38186*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070145590, + "lat": 44.9604248, + "lon": 5.7447593, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38265*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070153583, + "lat": 44.9709786, + "lon": 5.7027458, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38254*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6070651577, + "lat": 43.6412045, + "lon": 6.9361435, + "tags": { + "addr:street": "Rond-Point de l'Alambic", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "id_station": "FR*A16*P*WIIZ*65*_*_*_", + "motorcar": "yes", + "name": "Grasse Parking Alambic", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*65*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*65*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6070652324, + "lat": 43.5839868, + "lon": 7.1233688, + "tags": { + "addr:street": "Avenue de Verdun", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Antibes Parking St Roch", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*10*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*10*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6076407535, + "lat": 47.4244829, + "lon": -0.5254489, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Maréchal Leclerc", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49246*003", + "socket:type2": "2", + "socket:type2:output": "18kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6078532514, + "lat": 44.3712659, + "lon": 2.5886308, + "tags": { + "amenity": "charging_station", + "amperage": "22", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "contact:phone": "+33 805021480", + "contact:website": "https://www.reveocharge.com/fr/chercher-et-trouver-une-borne-de-recharge/", + "fee": "yes", + "fixme": "verifier la reference note sur la borne", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12176*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2018", + "start_date": "2018-11-19" + } + }, + { + "type": "node", + "id": 6080641163, + "lat": 44.2267158, + "lon": 6.9320458, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "description": "4 bornes", + "fee": "yes", + "name": "Prise deNice", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes" + } + }, + { + "type": "node", + "id": 6081622854, + "lat": 46.1272505, + "lon": 3.4300921, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PVICHY2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "survey", + "start_date": "2016", + "survey:date": "2020-06-13" + } + }, + { + "type": "node", + "id": 6087059472, + "lat": 43.654063, + "lon": 6.926369, + "tags": { + "addr:street": "Avenue Pierre Semard", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Gare SNCF", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*60*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*60*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059473, + "lat": 43.629416, + "lon": 6.8422845, + "tags": { + "addr:street": "Avenue de l'Hôtel de Ville", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Tignet Parking Mairie", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*23*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*23*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059474, + "lat": 43.59236, + "lon": 6.929529, + "tags": { + "addr:street": "Place du Logis", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pégomas Parking Logis", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*79*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*79*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059475, + "lat": 43.632512, + "lon": 6.952294, + "tags": { + "addr:street": "Route Napoléon", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Stade de la Paoute", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*12*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*12*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059476, + "lat": 43.620225, + "lon": 6.973192, + "tags": { + "addr:street": "Rue de la Gare", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mouans-Sartoux Parking de la Gare", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*66*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*66*_*_*_", + "socket:type2": "4", + "socket:typee": "4", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059477, + "lat": 43.6564596, + "lon": 6.9203581, + "tags": { + "addr:street": "Place du Cours Honoré Cresp", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Place du Cours Honoré Cresp", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*21*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*21*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059478, + "lat": 43.657752, + "lon": 6.920752, + "tags": { + "addr:street": "Rue de l'Ancien palais de justice", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Rue de l'ancien palais de justice", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*14*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*14*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059479, + "lat": 43.655709, + "lon": 6.87583, + "tags": { + "addr:street": "Rue de l'Église", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cabris Parking de la Poste", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*77*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*77*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059480, + "lat": 43.655692, + "lon": 6.922162, + "tags": { + "addr:street": "Avenue Carnot", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Avenue Carnot", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*63*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*63*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059481, + "lat": 43.638298, + "lon": 6.8735176, + "tags": { + "addr:street": "Chemin du Stade", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Peymeinade Parking Complexe Sportif", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*90*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*90*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059482, + "lat": 43.65687, + "lon": 6.927089, + "tags": { + "addr:street": "Avenue de Provence", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking salle omnisports", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*15*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*15*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059483, + "lat": 43.616841, + "lon": 6.971394, + "tags": { + "addr:street": "Allée du Parc", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mouans-Sartoux Parking du Parc", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*67*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*67*_*_*_", + "socket:type2": "4", + "socket:typee": "4", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059484, + "lat": 43.6391351, + "lon": 6.8759337, + "tags": { + "addr:street": "Avenue du Dr Belletrud", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Peymeinade Parking St Marc", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*80*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*80*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059585, + "lat": 43.6502658, + "lon": 6.7937761, + "tags": { + "addr:street": "Chemin de la Chaux", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Cézaire-sur-Siagne Parking Chemin de la Chaux", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*91*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*91*_*_*_", + "socket:type2": "1", + "socket:typee": "1", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059586, + "lat": 43.651211, + "lon": 6.92296, + "tags": { + "addr:street": "Traverse Kellermann", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Square des Diables Bleus", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*61*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*61*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059587, + "lat": 43.580188, + "lon": 6.947942, + "tags": { + "addr:street": "Avenue de la République", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Roquette-sur-Siagne Parking St Jean", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*17*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*17*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059588, + "lat": 43.654076, + "lon": 6.944208, + "tags": { + "addr:street": "Rond-Point du Moulin de Brun", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Giratoire du Moulin de Brun", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*62*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*62*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059589, + "lat": 43.648015, + "lon": 6.856883, + "tags": { + "addr:street": "Boulevard Dr Sauvy", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Spéracèdes Parking Mairie", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*25*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059590, + "lat": 43.642219, + "lon": 6.958667, + "tags": { + "addr:street": "Avenue Louis Cauvin", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Place Ste Hélène", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*22*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*22*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059591, + "lat": 43.59413, + "lon": 6.92641, + "tags": { + "addr:street": "D109A", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pégomas Parking Parchois", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*3*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*3*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087059593, + "lat": 43.63954, + "lon": 6.912976, + "tags": { + "addr:street": "Place Frédéric Mistral", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grasse Parking Place Frédéric Mistral", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "FR*A16*P*WIIZ*13*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*13*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve-1/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295094, + "lat": 43.6403308, + "lon": 7.0072379, + "tags": { + "addr:street": "Avenue Saint-Roch", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Valbonne Parking Hotel de Ville", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*76*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*76*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295095, + "lat": 43.6218064, + "lon": 7.0390597, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Valbonne Place Bermond", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref:EU:EVSE": "FR*A16*P*WIIZ*75*_*_*_", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6087295096, + "lat": 43.642094, + "lon": 7.006775, + "tags": { + "addr:street": "Parking Valis Bonna", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Valbonne Parking Valis Bonna", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*74*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*74*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295097, + "lat": 43.686064, + "lon": 7.106864, + "tags": { + "addr:street": "Rue des Écoles", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Colle-Sur-Loup Parking Straputicari", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*72*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*72*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295098, + "lat": 43.685255, + "lon": 7.099003, + "tags": { + "addr:street": "Boulervard Alex Rouberts", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Colle-Sur-Loup Stade de Football", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*71*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*71*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295099, + "lat": 43.627631, + "lon": 7.09455, + "tags": { + "addr:street": "Chemin Neuf", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Biot Parking Village", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*70*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*70*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295100, + "lat": 43.5782663, + "lon": 7.1209237, + "tags": { + "addr:street": "Boulevard maréchal foch", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Antibes Parking Foch", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*69*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*69*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295101, + "lat": 43.6000595, + "lon": 7.1218915, + "tags": { + "addr:street": "Chemin des Frères Garbero", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Antibes Parking Garbero", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*68*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*68*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295102, + "lat": 43.6679188, + "lon": 7.0433999, + "tags": { + "addr:street": "Chemin de la Basse Ferme", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Roquefort-les-Pins Parking Intermarché", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*59*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*59*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295103, + "lat": 43.6656235, + "lon": 7.0490552, + "tags": { + "addr:street": "Route de Valbonne", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Roquefort-les-Pins Parking Centre Village", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*58*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*58*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295104, + "lat": 43.569863, + "lon": 7.074144, + "tags": { + "addr:street": "Rue Alexandre Louce", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vallauris Parking Louce", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*57*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*57*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295105, + "lat": 43.5716104, + "lon": 7.0776002, + "tags": { + "addr:street": "Avenue des Mimosas", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vallauris Parking Allinei", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref:EU:EVSE": "FR*A16*P*WIIZ*56*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295106, + "lat": 43.5648831, + "lon": 7.0722038, + "tags": { + "addr:street": "Avenue des Frères Roustan", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vallauris Parking Plage", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*55*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*55*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295107, + "lat": 43.57942, + "lon": 7.0560634, + "tags": { + "addr:street": "Avenue de l'Hopital", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vallauris Parking Mairie", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*54*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*54*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295108, + "lat": 43.658475, + "lon": 7.120687, + "tags": { + "addr:street": "Place Général de Gaulle", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villeneuve-Loubet Parking Général De Gaulle", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*53*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*53*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295109, + "lat": 43.637202, + "lon": 7.139475, + "tags": { + "addr:street": "Boulevard Éric Tabarly", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villeneuve-Loubet Parking Fighières", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*52*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*52*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295110, + "lat": 43.656188, + "lon": 7.12692, + "tags": { + "addr:street": "Allée René Cassin", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Villeneuve-Loubet Parking Médiathèque", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*51*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*51*_*_*_", + "socket:type2": "4", + "socket:typee": "4", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295111, + "lat": 43.7185937, + "lon": 7.0632809, + "tags": { + "addr:street": "Parking de la Madeleine", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Tourrettes-sur-Loup Parking de la Madeleine", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*50*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*50*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295112, + "lat": 43.796143, + "lon": 6.943561, + "tags": { + "addr:street": "Route de Gentelly", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Gréolières Parking Faïsse", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*49*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*49*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295114, + "lat": 43.680862, + "lon": 6.972869, + "tags": { + "addr:street": "Place des Pins", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Châteauneuf-Grasse Parking Place des Pins", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*37*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*37*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295115, + "lat": 43.7208231, + "lon": 6.9776007, + "tags": { + "addr:street": "Parking de la Ferrage", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Gourdon Village - Parking de la Ferrage", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*36*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*36*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295116, + "lat": 43.7014157, + "lon": 6.98938, + "tags": { + "addr:street": "Place de la Tour", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Bar-sur-Loup Parking Place de la Tour", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*33*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*33*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295117, + "lat": 43.8250435, + "lon": 7.122696, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bouyon Parking Village", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*32*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*32*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6087295121, + "lat": 43.667044, + "lon": 6.9854992, + "tags": { + "addr:street": "Rond-Point de la fontaine neuve", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Opio Parking centre commercial Font Neuve", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*7*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*7*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295122, + "lat": 43.575956, + "lon": 7.053818, + "tags": { + "addr:street": "Avenue Jérome Massier", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vallauris Parking Stade", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*5*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087295124, + "lat": 43.580115, + "lon": 7.120677, + "tags": { + "addr:street": "Place Général de Gaulle", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Antibes Place Général de Gaulle", + "network": "WiiiZ", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CASA", + "ref": "FR*A16*P*WIIZ*2*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*2*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/infrastructures-de-recharge-pour-vehicules-electriques-irve/", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087608269, + "lat": 43.549031, + "lon": 7.030538, + "tags": { + "addr:street": "Rue Latour Maubourg", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Latour Maubourg", + "network": "wiiiz", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPL", + "ref": "FR*A18*P*WIIZ*24*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*24*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087608270, + "lat": 43.550552, + "lon": 7.002274, + "tags": { + "addr:street": "Avenue du docteur Picaud", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Picaud", + "network": "wiiiz", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPL", + "ref": "FR*A18*P*WIIZ*18*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*18*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087608271, + "lat": 43.5513201, + "lon": 7.00874, + "tags": { + "addr:street": "Rue Saint-Dizier", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking St Dizier", + "network": "wiiiz", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPL", + "ref": "FR*A18*P*WIIZ*9*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*9*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6087608272, + "lat": 43.562816, + "lon": 7.005574, + "tags": { + "addr:street": "Avenue des Brousailles", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Brousailles (Hôpital)", + "network": "wiiiz", + "note": "info non-reportees: authentication par QR code; puissance max 22; id_pdc", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPL", + "ref": "FR*A18*P*WIIZ*6*_*_*_", + "ref:EU:EVSE": "FR*A16*P*WIIZ*6*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr", + "source:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 6089326061, + "lat": 45.1707585, + "lon": 5.4125905, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38117*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089334264, + "lat": 45.1005975, + "lon": 5.2480396, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Hilaire-du-Rosier Parking R21 - Le Village", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref": "eborn:FR*S38*P38394*A", + "ref:EU:EVSE": "FR*S38*P38394*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089346118, + "lat": 45.0326146, + "lon": 5.5271235, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38129*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089357076, + "lat": 45.129589, + "lon": 5.5834097, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38205*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089364666, + "lat": 45.1735972, + "lon": 5.5442749, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38021*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089373932, + "lat": 45.127427, + "lon": 5.5275627, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38225*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089377989, + "lat": 45.1707504, + "lon": 5.6304932, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38433*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089409128, + "lat": 45.1114886, + "lon": 5.8748925, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38567*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "terrain + site eborn.fr pour les références de la borne", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6089438030, + "lat": 48.8509832, + "lon": -0.5536298, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET168", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6093127457, + "lat": 50.0620683, + "lon": 1.407011, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6095014079, + "lat": 50.0653534, + "lon": 1.3874144, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PSTFUZJ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6096686777, + "lat": 43.7258618, + "lon": -1.0526403, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Type de borne : accélérée (entre 2h et 8h de charge)", + "fee": "yes", + "mapillary": "2338512449625651", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:type": "public", + "owner": "SYDEC 40", + "parking:fee": "no", + "ref": "FR*S40*P40088*005", + "ref:EU:EVSE": "FR*S40*PMB40*34", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6096686778, + "lat": 43.7230989, + "lon": -1.0521439, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "mapillary": "470010831000335", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:type": "public", + "owner": "SYDEC 40", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S40*PMB40*82", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6096686779, + "lat": 43.7262217, + "lon": -1.0444365, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Type de borne : accélérée (entre 2h et 8h de charge)", + "fee": "yes", + "mapillary": "281907256970945", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:type": "public", + "owner": "SYDEC 40", + "parking:fee": "no", + "ref": "FR*S40*P40279*001", + "ref:EU:EVSE": "FR*S40*PMB40*33", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6096686780, + "lat": 43.7278088, + "lon": -1.0644663, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "mapillary": "390399185429197", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:type": "public", + "owner": "SYDEC 40", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S40*PMB40*81", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6098600722, + "lat": 49.7750892, + "lon": 4.7645, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "AM 001 - Aiglemont - Victor Hugo - Zoe", + "operator": "clem", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 6098649909, + "lat": 49.8235972, + "lon": 4.6516094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 003 - Arreux - Route de Houldizy", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6098702212, + "lat": 49.6722239, + "lon": 4.7337589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 004 - Balaives et Butz - Grand Rue - Zoe", + "operator": "Clem", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 6098769448, + "lat": 49.6891747, + "lon": 4.9601941, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 005 - Balan - Place de la Mairie" + } + }, + { + "type": "node", + "id": 6098772769, + "lat": 49.6864102, + "lon": 4.9682283, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 006 - Balan - Lotissement les Buire" + } + }, + { + "type": "node", + "id": 6098784796, + "lat": 49.6755533, + "lon": 4.9762192, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 007 - Bazeilles - Place de la Republique - Zoe", + "operator": "Clem", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 6098787641, + "lat": 49.6758271, + "lon": 4.9811878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 008 - Bazeilles - General Lebrun", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6098794620, + "lat": 49.7759923, + "lon": 4.6340725, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 009 - Belval - Place de l'Église", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6098799523, + "lat": 49.7538601, + "lon": 4.8755213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 010 - Bosseval et Briancourt - Rue de la Mairie" + } + }, + { + "type": "node", + "id": 6102709408, + "lat": 44.7904291, + "lon": 4.2263921, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07203*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://www.sde07.com/" + } + }, + { + "type": "node", + "id": 6109080398, + "lat": 49.4154954, + "lon": 2.8185922, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "UTC" + } + }, + { + "type": "node", + "id": 6109413147, + "lat": 50.0326095, + "lon": 1.3988529, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6110488485, + "lat": 48.8437741, + "lon": 2.6171695, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Noisiel RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "216", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6112703879, + "lat": 48.5942687, + "lon": -0.6507373, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Place de la Roirie", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne", + "owner": "Se 61", + "ref:EU:EVSE": "FR*S61*P61145A", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6121689761, + "lat": 49.6839405, + "lon": 4.7683452, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 011 - Boutancourt - Place Église", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6121701318, + "lat": 49.7060416, + "lon": 4.7707988, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 013 - Chalandry Elaire - Impasse Ambly", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 6121703367, + "lat": 49.7111475, + "lon": 4.7473842, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 013 - Chalandry Elaire - Impasse Ambly" + } + }, + { + "type": "node", + "id": 6121705900, + "lat": 49.8101347, + "lon": 4.6120893, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 015 - Cliron - Pl de Pierre Destrée" + } + }, + { + "type": "node", + "id": 6121710298, + "lat": 49.8116768, + "lon": 4.6242044, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 016 - Cliron - Hameau de Charoue", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6121712102, + "lat": 49.703102, + "lon": 4.990657, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 017 - Daigny - Rue de la Gare" + } + }, + { + "type": "node", + "id": 6121719754, + "lat": 49.6889427, + "lon": 4.8066535, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 019 - Dom le Mesnil - Pl Vienot" + } + }, + { + "type": "node", + "id": 6121724654, + "lat": 49.6978008, + "lon": 4.8747544, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 022 - Donchery - Gare SNCF" + } + }, + { + "type": "node", + "id": 6121725488, + "lat": 49.6953241, + "lon": 4.8755755, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 021 - Donchery - Pl de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6121728965, + "lat": 49.7011176, + "lon": 4.8711619, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 023 - Donchery - Fontaine de Rutz", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6121729601, + "lat": 49.6687903, + "lon": 4.7595454, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 024 - Elan - Pl des Sens", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6121729963, + "lat": 49.6857368, + "lon": 4.7532724, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 025 - Etrepigny - Neuve Voie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6123700372, + "lat": 48.7398467, + "lon": 2.4257918, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "ref:EU:EVSE": "FR*SOD*S*SMOY*47*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6126693237, + "lat": 44.9459877, + "lon": 4.893942, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26058*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6127160384, + "lat": 48.9760894, + "lon": 2.2562292, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JGFS", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JGFS1" + } + }, + { + "type": "node", + "id": 6127285533, + "lat": 45.7619515, + "lon": 4.804148, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6127883961, + "lat": 49.7477542, + "lon": 4.9478645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 027 - Fleigneux - Douane", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127895198, + "lat": 49.6978935, + "lon": 4.7749612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "1€/h", + "covered": "no", + "fee": "yes", + "manufacturer": "Nexans", + "name": "AM 029 - Flize - Salengro", + "operator": "Clem", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 6127896565, + "lat": 49.6983079, + "lon": 4.7779014, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "AM 028 - Flize - Place de la Glaciere", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127905352, + "lat": 49.7213007, + "lon": 4.927417, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 030 - Floing - Rue Charles de Gaulle", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6127937640, + "lat": 49.7673909, + "lon": 4.8179339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 032 - Gernelle - Pl de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127944020, + "lat": 49.8202093, + "lon": 4.8289753, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 033 - Gespunsart - Rue de la Gare", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127949031, + "lat": 49.7197185, + "lon": 4.989426, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 034 - Givonne - rue des Sabotiers", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127949083, + "lat": 49.7119359, + "lon": 4.9138632, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 035 - Glaire 1 - Pl de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127950641, + "lat": 49.6723356, + "lon": 4.8300186, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 036 - Hannogne St Martin - Rue du Jeune", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127951516, + "lat": 49.7852558, + "lon": 4.6157874, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 037 - Haudrecy - Pl de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127953501, + "lat": 49.8101479, + "lon": 4.6695493, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 018 - Damouzy - Grande Rue", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127954079, + "lat": 49.7350135, + "lon": 4.9607109, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 039 - Illy - Grande Rue", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127955872, + "lat": 49.7426129, + "lon": 5.016775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 041 - La chapelle - Grande Rue", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127961203, + "lat": 49.7284224, + "lon": 4.7124055, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 042 - La Francheville", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127961984, + "lat": 49.7314283, + "lon": 4.717313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 043 - La Francheville", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127963932, + "lat": 49.726103, + "lon": 4.714829, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 044 - La Francheville", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127965306, + "lat": 49.780568, + "lon": 4.7956254, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 045 - La Grandville", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127965470, + "lat": 49.6878228, + "lon": 4.9879077, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 046 - La Moncelle", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127968712, + "lat": 49.7196416, + "lon": 4.7575902, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 047 - Les Ayvelles", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127971064, + "lat": 49.7244631, + "lon": 4.7519828, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 048 - Les Ayvelles", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127981904, + "lat": 49.7256507, + "lon": 4.7558067, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 049 - Les Ayvelles", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6127984727, + "lat": 49.7355547, + "lon": 4.7834683, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "AM 050 - Lumes", + "operator": "Nexans", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "7 kVA" + } + }, + { + "type": "node", + "id": 6127985336, + "lat": 49.7740978, + "lon": 4.7433993, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 051 - Montcy-Notre-Dame", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6127989723, + "lat": 49.8107755, + "lon": 4.7942179, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 053 - Neufmanil", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128055159, + "lat": 48.7549605, + "lon": 2.3504875, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6128092893, + "lat": 48.7818597, + "lon": 2.2222768, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "charge": "0.25 €/kWh + 0.10 €/h au-delà de 3h", + "fee": "yes", + "level": "-1", + "note": "allée H", + "operator": "EDF", + "payment:app": "yes", + "socket:type2": "5", + "socket:type2:output": "22 kW", + "socket:typee": "5" + } + }, + { + "type": "node", + "id": 6128092894, + "lat": 48.7818905, + "lon": 2.2221617, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "charge": "0.25 €/kWh + 0.10 €/h au-delà de 3h", + "fee": "yes", + "level": "-1", + "note": "allée H", + "operator": "EDF", + "payment:app": "yes", + "socket:type2": "6", + "socket:type2:output": "22 kW", + "socket:typee": "6" + } + }, + { + "type": "node", + "id": 6128104486, + "lat": 48.7828081, + "lon": 2.2156563, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "VILLE DE VELIZY", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "owner": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR*55C*P78140*VLZ*DEWOITINE", + "socket:type2": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6128279569, + "lat": 49.6974596, + "lon": 4.7945166, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 054 - Nouvion sur Meuse - Gare", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128282129, + "lat": 49.7028569, + "lon": 4.7983959, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 055 - Nouvion sur Meuse - Escadrille Normandie", + "operator": "Clem", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 6128284519, + "lat": 49.8156775, + "lon": 4.7399094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 056 - Nouzonville - Jean Roger", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128290963, + "lat": 49.8126414, + "lon": 4.7432386, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 057 - Nouzonville - Gare", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128299177, + "lat": 49.6531479, + "lon": 4.8465247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 058 - Noyers Pont Maugis - Pl des Tilleuls", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128310230, + "lat": 49.6615681, + "lon": 4.9364727, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 059 - Noyers Pont Maugis - Place de Église", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128311757, + "lat": 49.7066834, + "lon": 5.0916129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 060 - Pouru aux Bois - Rue de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128314850, + "lat": 49.6784251, + "lon": 5.0824691, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 061 - Pouru Saint-Remy - Belle Bersin", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128316992, + "lat": 49.7544657, + "lon": 4.687797, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 062 - Prix les Mezieres - Pl de la mairie", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6128325194, + "lat": 49.7524012, + "lon": 4.6921155, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 063 - Prix les Mezieres - Rue du Stade", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128328058, + "lat": 49.6908331, + "lon": 5.0230786, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 064 - Rubecourt Lamecourt - Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128334333, + "lat": 49.6530825, + "lon": 4.8454832, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 065 - Saint-Aignan - Place de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128336466, + "lat": 49.7632457, + "lon": 4.7700789, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 066 - Saint-Laurent - Campanules", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128338647, + "lat": 49.7383708, + "lon": 4.9250135, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 067 - Saint-Menges - Pl de la Republique", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128345579, + "lat": 49.6587999, + "lon": 4.794309, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 068 - Sapogne et Feucheres - Grand Rue", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128359992, + "lat": 49.8586719, + "lon": 4.6609736, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 069 - Secheval - Rue Dauphine", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128365864, + "lat": 49.6510551, + "lon": 4.9428776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 070 - Thelonne - Fond Tanette", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128378876, + "lat": 49.795583, + "lon": 4.6360754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 072 - Tournes - Esp Jean Bourguignon", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128381723, + "lat": 49.7543772, + "lon": 4.7863793, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 073 - Ville sur Lumes - Rue des Jardins", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128386186, + "lat": 49.7167849, + "lon": 5.0324188, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 074 - Villers Cernay - RD 4", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128386725, + "lat": 49.7429536, + "lon": 4.7471946, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 075 - Villers Semeuse - Mairie", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6128390280, + "lat": 49.7393773, + "lon": 4.7508103, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 076 - Villers Semeuse - Mediatheque", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128390658, + "lat": 49.74259, + "lon": 4.7387045, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 077 - Villers Semeuse - Rue du stade", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128409947, + "lat": 49.6796553, + "lon": 4.848745, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 080 - Villers sur Bar - Pl de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128410088, + "lat": 49.7380618, + "lon": 4.7425469, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 079 - Villers Semeuse - Gros Caillou", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128412987, + "lat": 49.7333452, + "lon": 4.8299161, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 081 - Vivier au Court - Place Église", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128420102, + "lat": 49.7384101, + "lon": 4.8224237, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 082 - Vivier au Court - Pl des Manises", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128426284, + "lat": 49.7363468, + "lon": 4.8578352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 083 - Vrigne aux Bois - Pl de la Republique", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128434358, + "lat": 49.7371523, + "lon": 4.8542863, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 084 - Vrigne aux Bois - Jean Jaurès", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128436671, + "lat": 49.703306, + "lon": 4.8450429, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 085 - Vrigne Meuse - Mezieres", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128437459, + "lat": 49.685246, + "lon": 4.9410643, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 086 - Wadelincourt - place Stevenin", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128439512, + "lat": 49.770458, + "lon": 4.6820515, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 087 - Warcq - Place de la Mairie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128444990, + "lat": 49.7790322, + "lon": 4.6945651, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 089 - Warcq - Pl St Paul", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128446738, + "lat": 49.774318, + "lon": 4.679681, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 090 - Warcq - Route de Tournes", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128482775, + "lat": 49.7029838, + "lon": 4.9434538, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 091 - Sedan - Place Turenne", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128488759, + "lat": 49.705015, + "lon": 4.9407702, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 092 - Sedan - St Vincent de Paul", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128490899, + "lat": 49.6995259, + "lon": 4.9445673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 093 - Sedan - Bischwiller", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128495262, + "lat": 49.6989899, + "lon": 4.9489178, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 095 - Sedan - Rue de la Paix", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128500469, + "lat": 49.6961096, + "lon": 4.9437508, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 094 - Sedan - De Gaulle", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128506847, + "lat": 49.701142, + "lon": 4.9488129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 097 - Sedan - Promenoir des pretres", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128507444, + "lat": 49.6996771, + "lon": 4.9517833, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 096 - Sedan - Place Nassau", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128509766, + "lat": 49.7024319, + "lon": 4.9411463, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "AM 098 - Sedan - Mark", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128513036, + "lat": 49.6997982, + "lon": 4.9276649, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 099 - Sedan - Leon Charpentier", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128515276, + "lat": 49.6964827, + "lon": 4.9294546, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 100 - Sedan - GARE", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128522373, + "lat": 49.7018443, + "lon": 4.9330555, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 102 - Sedan - Sampaix", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128531808, + "lat": 49.7399712, + "lon": 4.7178727, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 116 - Charleville-Mezieres - Delautre", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128532958, + "lat": 49.7568668, + "lon": 4.7099855, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 104 - Charleville-Mezieres - Parc des Expo", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128534434, + "lat": 49.7576565, + "lon": 4.7186287, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 105 - Charleville-Mezieres - St Louis", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128535797, + "lat": 49.7562538, + "lon": 4.7165044, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 106 - Charleville-Mezieres - RG", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128540098, + "lat": 49.7564088, + "lon": 4.7214846, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 107 - Charleville-Mezieres - Picasso", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128541989, + "lat": 49.7540352, + "lon": 4.7177969, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 108 - Charleville-Mezieres - Leon Bourgeois", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128544493, + "lat": 49.7518432, + "lon": 4.7274918, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 109 - Charleville-Mezieres - Place Marceau", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128546642, + "lat": 49.7523783, + "lon": 4.7333671, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 110 - Charleville-Mezieres - Mohon gare", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128547447, + "lat": 49.7473307, + "lon": 4.7211304, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 112 - Charleville-Mezieres - SARC", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128548010, + "lat": 49.7496237, + "lon": 4.7213835, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 111 - Charleville-Mezieres - Mesanges", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128548422, + "lat": 49.7418202, + "lon": 4.7161599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 115 - Charleville-Mezieres - Gymnase capucine", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128550028, + "lat": 49.7426141, + "lon": 4.7260303, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 114 - Charleville-Mezieres - Muguet", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128554366, + "lat": 49.760807, + "lon": 4.6884699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 117 - Charleville-Mezieres - Patinoir", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128557899, + "lat": 49.7636251, + "lon": 4.6924751, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 118 - Charleville-Meziere - Raulin", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128559645, + "lat": 49.7642689, + "lon": 4.6974601, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 119 - Charleville-Mezieres - Warcq", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128562149, + "lat": 49.7624237, + "lon": 4.6998105, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 120 - Charleville-Mezieres - Manchester", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128562932, + "lat": 49.7592842, + "lon": 4.7227914, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 124 - Charleville-Mezieres - centre", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128568577, + "lat": 49.7609466, + "lon": 4.7199296, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 122 - Charleville-Mezieres - Hotel de ville", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128574329, + "lat": 49.7774236, + "lon": 4.7348236, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 127 - Charleville-Mezieres - Pl. Montcy", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128574330, + "lat": 49.7766563, + "lon": 4.7237939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 128 - Charleville-Mezieres - Paquis", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128576748, + "lat": 49.7824068, + "lon": 4.7222919, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 125 - Charleville-Mezieres - mont Olympe", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128603146, + "lat": 49.7820319, + "lon": 4.703081, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 130 - Charleville-Mezieres - Rulut", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128604424, + "lat": 49.7817372, + "lon": 4.7123226, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 131 - Charleville-Mezieres - Poulain", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128607271, + "lat": 49.7861136, + "lon": 4.7113796, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 132 - Charleville-Mezieres - Curie", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128608222, + "lat": 49.778956, + "lon": 4.7055904, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 133 - Charleville-Mezieres - Dunant", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128611100, + "lat": 49.7760762, + "lon": 4.7156021, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 134 - Charleville-Meziere - Gailly 1", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128613054, + "lat": 49.774711, + "lon": 4.7245459, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 136 - Charleville-Mezieres - J. Felix 1", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128624013, + "lat": 49.7683511, + "lon": 4.7233525, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 145 - Charleville-Mezieres - Corneau CPAM", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128624557, + "lat": 49.7732091, + "lon": 4.715377, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 138 - Charleville-Mezieres - Cinéma", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128625524, + "lat": 49.7734958, + "lon": 4.7177859, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 139 - Charleville-Mezieres - Nevers", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128626403, + "lat": 49.7723147, + "lon": 4.7221205, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 140 - Charleville-Mezieres - Churchill", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128629575, + "lat": 49.7714538, + "lon": 4.7303207, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 141 - Charleville-Mezieres - Petit Bois", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6128631355, + "lat": 49.77046, + "lon": 4.7157255, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 142 - Charleville-Mezieres - Renier", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128633925, + "lat": 49.769957, + "lon": 4.7195978, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 143 - Charleville-Mezieres - Briand", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 6128636663, + "lat": 49.7657765, + "lon": 4.7173607, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 147 - Charleville-Mezieres - Voltaire", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6128637546, + "lat": 49.7750997, + "lon": 4.7196474, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 149 - Charleville-Mezieres - Conde", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6132138494, + "lat": 43.2964299, + "lon": 5.5949302, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6132138594, + "lat": 43.2964376, + "lon": 5.594982, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6134920586, + "lat": 43.2950614, + "lon": 5.5929992, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6134926485, + "lat": 43.2950565, + "lon": 5.5930297, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6137332391, + "lat": 43.6384521, + "lon": 4.8129851, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Simone Avenue Nostradamus", + "network": "Simone", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMED 13", + "ref:EU:EVSE": "FR*S13*P13097*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6137489674, + "lat": 45.6984892, + "lon": 4.9775027, + "tags": { + "access": "customers", + "addr:city": "Saint-Priest", + "addr:postcode": "69800", + "addr:street": "A43 - Aire de Manissieux", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire de Manissieux Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedemanissieuxsupercharger" + } + }, + { + "type": "node", + "id": 6147252441, + "lat": 49.2470946, + "lon": 0.3769086, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900004", + "ref:EU:EVSE": "FR*S27*PCORMEILLES*DEGAULLE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6150075743, + "lat": 43.7150215, + "lon": -1.0534758, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*55", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6153884167, + "lat": 48.7801623, + "lon": 5.1676163, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6153884168, + "lat": 48.7764024, + "lon": 5.1596864, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6153884169, + "lat": 48.7731429, + "lon": 5.167, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "ref": "55029*D*B2*G; 55029*D*B2*D", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6153884170, + "lat": 48.7731583, + "lon": 5.1670342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "ref": "55029*D*B1*G; 55029*D*B1*D", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6153884171, + "lat": 48.7751094, + "lon": 5.1623109, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6161635785, + "lat": 48.6133471, + "lon": -3.4704249, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6163242946, + "lat": 49.6966724, + "lon": 0.7013427, + "tags": { + "amenity": "charging_station", + "operator": "SDE 76" + } + }, + { + "type": "node", + "id": 6166259785, + "lat": 48.7116283, + "lon": 7.1069363, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6167999094, + "lat": 45.6899779, + "lon": 0.1782223, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "SEM Territoires Charente" + } + }, + { + "type": "node", + "id": 6167999095, + "lat": 45.6820114, + "lon": 0.1787443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Jeton à demander à l'accueil du magasin", + "fee": "no", + "operator": "Intermarché", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 6167999096, + "lat": 45.6820319, + "lon": 0.1768961, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 6168339185, + "lat": 44.9506312, + "lon": 4.929814, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "output": "22 kWh", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26362*K", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey", + "website": "http://www.sded.orios-infos.com/" + } + }, + { + "type": "node", + "id": 6170542586, + "lat": 45.8134407, + "lon": 3.1086172, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "description": "Abonnement préalable nécessaire", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Nissan", + "payment:cb": "no", + "payment:coins": "no", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2:output": "43 kW" + } + }, + { + "type": "node", + "id": 6170634905, + "lat": 45.4243026, + "lon": 4.065495, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Saint-Bonnet-le-Château", + "ref:EU:EVSE": "FRS42P42204A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6170664153, + "lat": 45.8037428, + "lon": 3.139977, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 6170841703, + "lat": 44.5505598, + "lon": -0.8670522, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*142", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6171186347, + "lat": 45.0496922, + "lon": 3.9165512, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Sur le parking à gauche du magasin. 2 places.\nOuvert 24/7\nGratuit. Charge 30mn.\nLa charge démarre instantanément sans carte ni badge.", + "fee": "no", + "opening_hours": "Mo-Su 12:00-12:00", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 6171496220, + "lat": 47.6661603, + "lon": 7.4414736, + "tags": { + "amenity": "charging_station", + "capacity": "5" + } + }, + { + "type": "node", + "id": 6172744833, + "lat": 47.8655771, + "lon": 1.8980515, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6174599482, + "lat": 44.8422334, + "lon": 2.6599722, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12164*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6176630022, + "lat": 46.8210134, + "lon": -0.6701622, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB13082A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6178195651, + "lat": 49.0992904, + "lon": -1.6079146, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "sdem50" + } + }, + { + "type": "node", + "id": 6181012584, + "lat": 48.9804252, + "lon": 2.0059311, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fuel:electricity": "yes", + "name": "SEY Ma Borne - Triel-sur-Seine - Gare", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 6182053694, + "lat": 46.2321108, + "lon": 6.6563449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PODXLXEZKBM", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-06-27" + } + }, + { + "type": "node", + "id": 6186174636, + "lat": 44.3788624, + "lon": 5.4262708, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26369*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6192500306, + "lat": 43.0878775, + "lon": 2.9597609, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "amperage": "26", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11285001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 6196571143, + "lat": 48.7247817, + "lon": -1.1700959, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "e-charge 50", + "operator": "SDEM 50" + } + }, + { + "type": "node", + "id": 6196837230, + "lat": 46.1446809, + "lon": 6.0812435, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74243*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6199337575, + "lat": 48.9842816, + "lon": 2.2361065, + "tags": { + "addr:city": "Franconville", + "addr:postcode": "95130", + "addr:street": "Rue du Saut du Loup", + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JJJW", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JJJW1" + } + }, + { + "type": "node", + "id": 6207581981, + "lat": 43.6468772, + "lon": 3.8692235, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*018", + "ref:FR:REVEO": "FR-M34-E34172-018-1;FR-M34-E34172-018-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6207746503, + "lat": 48.9716741, + "lon": 2.2575987, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JHLU", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JHLU1" + } + }, + { + "type": "node", + "id": 6207843474, + "lat": 49.0140584, + "lon": 2.1782692, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "CA Valparisis" + } + }, + { + "type": "node", + "id": 6210129858, + "lat": 49.0197537, + "lon": 2.2426684, + "tags": { + "amenity": "charging_station", + "operator": "Communauté d'Agglomération Val Parisis" + } + }, + { + "type": "node", + "id": 6211171496, + "lat": 44.9940077, + "lon": 1.253541, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*106", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6212683265, + "lat": 48.9941592, + "lon": 2.2032771, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6213536760, + "lat": 49.0381316, + "lon": 2.2117739, + "tags": { + "amenity": "charging_station", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6213854887, + "lat": 48.6113894, + "lon": -3.4734985, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Région Bretagne" + } + }, + { + "type": "node", + "id": 6214578274, + "lat": 44.1188334, + "lon": 3.0682312, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Revéo", + "scooter": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6215569643, + "lat": 44.904511, + "lon": 4.9028486, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26362*H", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6215571593, + "lat": 44.9058921, + "lon": 4.904533, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDED" + } + }, + { + "type": "node", + "id": 6215828246, + "lat": 49.0179255, + "lon": 2.1850982, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6215948079, + "lat": 48.9700646, + "lon": 2.2632735, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6216217554, + "lat": 49.0132929, + "lon": 2.2520805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6216531637, + "lat": 45.8956399, + "lon": 6.1230764, + "tags": { + "access": "yes", + "addr:street": "fg des balmettes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.391€/KWh", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Faubourg des Balmettes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*I", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6218081900, + "lat": 44.7926191, + "lon": 6.5587642, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05006*B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6219141769, + "lat": 45.4675256, + "lon": 4.3530227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Villars", + "ref:EU:EVSE": "FRS42P42330C1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6226861250, + "lat": 44.0758719, + "lon": 6.1852592, + "tags": { + "addr:city": "Digne-les-Bains", + "addr:postcode": "04000", + "addr:street": "Avenue Gutenberg", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04070*D", + "ref:EU:EVSE": "FR*EBN*PEHWYSYEPGP", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6226896247, + "lat": 44.0947706, + "lon": 6.2393622, + "tags": { + "addr:city": "Digne-les-Bains", + "addr:postcode": "04000", + "addr:street": "Place Joseph Fontaine", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04070*A", + "ref:EU:EVSE": "FR*EBN*PAHJLY7UVLM", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "survey:date": "2023-03-31" + } + }, + { + "type": "node", + "id": 6231862011, + "lat": 48.177022, + "lon": 3.288832, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge pour véhicule électrique" + } + }, + { + "type": "node", + "id": 6231896978, + "lat": 48.1751318, + "lon": 3.2888507, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "name": "Borne de recharge pour véhicule électrique" + } + }, + { + "type": "node", + "id": 6231896979, + "lat": 48.1747496, + "lon": 3.2906581, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Borne de recharge pour véhicule électrique" + } + }, + { + "type": "node", + "id": 6236336930, + "lat": 44.0107393, + "lon": 4.4202587, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30334*002", + "ref:EU:EVSE": "FR*S30*P30334*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6239607703, + "lat": 48.9807932, + "lon": 2.0030984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fuel:electricity": "yes", + "name": "SEY Ma Borne - Triel-sur-Seine - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 6239647980, + "lat": 45.9396522, + "lon": 6.1053252, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "EPAGNY METZ-TESSY - Parking du Clocher", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74112*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6242107938, + "lat": 49.0210457, + "lon": 2.2312915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6242885598, + "lat": 49.7669662, + "lon": 1.7532131, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "owner": "SDE 76", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 Kw" + } + }, + { + "type": "node", + "id": 6244118648, + "lat": 43.2850862, + "lon": -0.3707537, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*56", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6246529648, + "lat": 48.3016027, + "lon": 4.3352535, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "operator": "INEO TINEA", + "owner": "SDEA10", + "ref:EU:EVSE": "FR*S10*P10165A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6249452333, + "lat": 48.3237833, + "lon": 4.3047566, + "tags": { + "amenity": "charging_station", + "fixme": "position exacte à vérifier" + } + }, + { + "type": "node", + "id": 6249791005, + "lat": 49.2341026, + "lon": 2.8999802, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Crépy-en-Valois, Parking Communauté", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PDAPNRG", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6250505791, + "lat": 47.6882487, + "lon": 2.6190068, + "tags": { + "amenity": "charging_station", + "name": "Auchan", + "operator": "Auchan", + "operator:wikidata": "Q758603" + } + }, + { + "type": "node", + "id": 6251133859, + "lat": 49.0507453, + "lon": 2.2059173, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251144355, + "lat": 49.0375076, + "lon": 2.208484, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251146251, + "lat": 49.0406853, + "lon": 2.2045998, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251155460, + "lat": 49.0388558, + "lon": 2.2176637, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Communauté d'Agglomération Val Parisis", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251161989, + "lat": 49.0168049, + "lon": 2.1267544, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251172678, + "lat": 49.0221808, + "lon": 2.1414856, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251180042, + "lat": 49.0217547, + "lon": 2.157305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251191912, + "lat": 49.0194027, + "lon": 2.1550769, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251205300, + "lat": 49.000587, + "lon": 2.1435896, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251213581, + "lat": 49.0042445, + "lon": 2.1269865, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251236670, + "lat": 48.9980516, + "lon": 2.1448591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251239590, + "lat": 49.0025696, + "lon": 2.1580247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251247903, + "lat": 49.0159212, + "lon": 2.1774927, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JFXF", + "source": "survey 2021", + "website": "https://my.freshmile.com/charge/JFXF2" + } + }, + { + "type": "node", + "id": 6251257520, + "lat": 49.013423, + "lon": 2.1957411, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251263861, + "lat": 49.0108911, + "lon": 2.1995565, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251264479, + "lat": 49.0098847, + "lon": 2.1977484, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251273709, + "lat": 49.0068923, + "lon": 2.1977808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251278752, + "lat": 49.0254255, + "lon": 2.2207592, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251281862, + "lat": 49.0263072, + "lon": 2.2250155, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251284726, + "lat": 49.0271508, + "lon": 2.2124866, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LDRU", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LDRU1" + } + }, + { + "type": "node", + "id": 6251291541, + "lat": 49.0173091, + "lon": 2.2108655, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251292048, + "lat": 49.015409, + "lon": 2.2103586, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251302074, + "lat": 49.0157969, + "lon": 2.2425215, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Val Parisis", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6251304651, + "lat": 49.0189507, + "lon": 2.2433545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251305043, + "lat": 49.0193093, + "lon": 2.2486817, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251382152, + "lat": 49.023579, + "lon": 2.2520103, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251385976, + "lat": 49.0057822, + "lon": 2.2483703, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LENN", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LENN2" + } + }, + { + "type": "node", + "id": 6251388354, + "lat": 49.0106043, + "lon": 2.2376781, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251390653, + "lat": 48.9976156, + "lon": 2.2444389, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251394938, + "lat": 49.0019706, + "lon": 2.2365716, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "EKCY", + "socket:type2": "2", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/EKCY2" + } + }, + { + "type": "node", + "id": 6251400809, + "lat": 49.0022111, + "lon": 2.2329253, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251402807, + "lat": 48.9986051, + "lon": 2.2218833, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Val Parisis Agglo", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6251408137, + "lat": 48.9949865, + "lon": 2.2668014, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBYD", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBYD2" + } + }, + { + "type": "node", + "id": 6251419132, + "lat": 48.9898051, + "lon": 2.2622287, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "ValParisis", + "operator": "Freshmile", + "ref": "JFJC", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JFJC2" + } + }, + { + "type": "node", + "id": 6251450785, + "lat": 48.8125509, + "lon": 2.3236341, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*004", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6253568679, + "lat": 47.3875221, + "lon": 0.8254205, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6254317488, + "lat": 45.1404705, + "lon": -0.3927875, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Station de recharge", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33492*002", + "ref:EU:EVSE": "FR*S33*PMB33*140", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "survey:date": "2019-02-02" + } + }, + { + "type": "node", + "id": 6254317494, + "lat": 45.1398884, + "lon": -0.4100036, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Recharge auto", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33492*001", + "ref:EU:EVSE": "FR*S33*PMB33*139", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6257555986, + "lat": 46.0678463, + "lon": 6.5839863, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6257619314, + "lat": 45.5471272, + "lon": 5.9711659, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PG15FUATVOZ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6261331931, + "lat": 48.984128, + "lon": 2.2275562, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LLMW", + "source": "survey 2022", + "website": "http://xfm.fr/LLMW2" + } + }, + { + "type": "node", + "id": 6261332204, + "lat": 48.9841487, + "lon": 2.2274968, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LMQS", + "source": "survey 2022", + "website": "http://xfm.fr/LMQS2" + } + }, + { + "type": "node", + "id": 6261382951, + "lat": 49.0009738, + "lon": 2.2782398, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "freshmile", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261493398, + "lat": 48.9973425, + "lon": 2.2585526, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Val Parisi", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6261510693, + "lat": 48.9916471, + "lon": 2.2770434, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261515747, + "lat": 46.2022846, + "lon": 6.2775457, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Centre Commercial Cap Bernard", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PPBANG1G7XO", + "socket:type": "1", + "socket:type2": "2", + "socket:type3c": "1", + "socket:type3c:current": "32 A", + "socket:type:current": "16 A", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6261521064, + "lat": 48.9913592, + "lon": 2.2843418, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBGU2", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBGU2" + } + }, + { + "type": "node", + "id": 6261532545, + "lat": 48.9783594, + "lon": 2.2892574, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ValParisis", + "operator": "Freshmile", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261535114, + "lat": 48.9789264, + "lon": 2.2731955, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261561327, + "lat": 48.9965044, + "lon": 2.1990092, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261562714, + "lat": 48.9853519, + "lon": 2.1887424, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LFPF", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261563984, + "lat": 48.9795798, + "lon": 2.1811668, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "ValParisis agglo", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261567607, + "lat": 48.9747809, + "lon": 2.1774912, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Freshmile", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261568841, + "lat": 48.9911474, + "lon": 2.1658376, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "freshmile", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261572450, + "lat": 48.9899388, + "lon": 2.1659084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261577548, + "lat": 48.9915161, + "lon": 2.1761052, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "website": "https://my.freshmile.com" + } + }, + { + "type": "node", + "id": 6261879745, + "lat": 46.4670991, + "lon": 4.1121808, + "tags": { + "amenity": "charging_station", + "fax": "+33 3 85 81 92 90", + "opening_hours": "Mo-Sa 09:00-19:30", + "phone": "+33 3 85 81 92 92", + "website": "http://www.e-leclerc.com/paray-le-monial/magasins-specialises/borne/info-bornehttp://www.e-leclerc.com/paray-le-monial/magasins-specialises/borne/info-bornes-electriquess-electriques" + } + }, + { + "type": "node", + "id": 6265540803, + "lat": 48.1957236, + "lon": 3.2764795, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89387*E", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6266889508, + "lat": 45.8897862, + "lon": 4.4395813, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "operator": "Communauté de l'Ouest Rhodanien" + } + }, + { + "type": "node", + "id": 6269743852, + "lat": 44.1816513, + "lon": 2.7881218, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12253*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6272762983, + "lat": 48.8261127, + "lon": 2.3583979, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9013*05", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6272762984, + "lat": 48.8261148, + "lon": 2.3583189, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9013*05", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6272765985, + "lat": 48.826117, + "lon": 2.3582335, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9013*05", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6275451689, + "lat": 43.5146324, + "lon": 1.3219952, + "tags": { + "addr:street": "Place de l'Hôtel de Ville", + "amenity": "charging_station", + "capacity": "2", + "description": "borne pour 2 véhicules", + "name": "Bornes de recharge" + } + }, + { + "type": "node", + "id": 6277231414, + "lat": 48.8351829, + "lon": 2.589605, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Einstein", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "operator": "monautopartage", + "ref": "204", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6278290084, + "lat": 46.1581215, + "lon": 4.1749462, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "eborn", + "opening_hours": "24/7", + "operator": "Easy Charge", + "ref:EU:EVSE": "FRS42P42052A1", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2021-11-17" + } + }, + { + "type": "node", + "id": 6278944815, + "lat": 49.2642314, + "lon": 1.8850829, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Foulerie", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PXGBNMT", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6281268427, + "lat": 44.4020947, + "lon": 0.9993883, + "tags": { + "amenity": "charging_station", + "description": "2 emplacements" + } + }, + { + "type": "node", + "id": 6281968628, + "lat": 48.0272918, + "lon": -4.537575, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BUJU", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6281985475, + "lat": 48.0142806, + "lon": -4.4864443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BUXJ", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6282853840, + "lat": 43.4820695, + "lon": -1.5155433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*4", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6282855218, + "lat": 43.4999364, + "lon": -1.5426897, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*1", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "survey:date": "2017-09-08" + } + }, + { + "type": "node", + "id": 6282855221, + "lat": 43.5267041, + "lon": -1.5209452, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*5", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6282856738, + "lat": 43.4942664, + "lon": -1.5287981, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6282857263, + "lat": 43.4999218, + "lon": -1.5124511, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*6", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6282858317, + "lat": 43.4840832, + "lon": -1.5133305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://www.mobive.fr/", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S64*PMB64*3", + "socket:chademo": "1", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6283083279, + "lat": 48.8925366, + "lon": 5.5405392, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "FUCLEM", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6283428001, + "lat": 48.0286978, + "lon": -4.5566826, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Leclerc", + "operator:wikidata": "Q1273376" + } + }, + { + "type": "node", + "id": 6284703969, + "lat": 47.2846306, + "lon": 0.7812803, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 6285705964, + "lat": 44.6887491, + "lon": 5.891606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Syme05 - Station de ski La joue du Loup", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S05*P05139*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6292735310, + "lat": 48.7718287, + "lon": -3.5171379, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6296300117, + "lat": 45.4857253, + "lon": 4.5402736, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "L'HORME", + "ref:EU:EVSE": "FRS42P42110A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6296500313, + "lat": 48.0924763, + "lon": -1.674215, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "SDE35", + "socket:schuko": "2", + "socket:type3": "2", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 6300909823, + "lat": 43.7623028, + "lon": 4.0564844, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34296*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6300965716, + "lat": 46.9767846, + "lon": -0.2782433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB18117A", + "socket:type2": "1", + "socket:type2:output": "22kw", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6303607220, + "lat": 46.2915492, + "lon": 4.3075811, + "tags": { + "amenity": "charging_station", + "brand": "Freshmile", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 67 47 07 67", + "contact:website": "https://territoiredenergie-bourgogne-franche-comte.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SYDESL : Syndicat Départemental d'Énergie de Saöne-et-Loire", + "payment:contactless": "yes", + "source": "survey (2021-07-06)" + } + }, + { + "type": "node", + "id": 6303697948, + "lat": 48.5677678, + "lon": 2.2678959, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6311925531, + "lat": 14.5840177, + "lon": -61.002621, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6314877138, + "lat": 43.6221053, + "lon": 4.0690522, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34050001", + "ref:FR:REVEO": "FR-S34-E34050-001-1;FR-S34-E34050-001-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:type3c": "2", + "socket:type3c:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge;data.gouv.fr:Etalab - 05/2022", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6314877147, + "lat": 43.6166841, + "lon": 4.0114588, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34926002", + "ref:FR:REVEO": "FR-S34-E34926-002-1;FR-S34-E34926-002-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:type3c": "2", + "socket:type3c:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge;data.gouv.fr:Etalab - 05/2022", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6316998708, + "lat": 46.639227, + "lon": 0.1656498, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B108", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6318651797, + "lat": 48.0373161, + "lon": -4.665396, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6318663174, + "lat": 48.0555568, + "lon": -4.5914541, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "SDEF - Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BQAX", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6318675970, + "lat": 48.0748825, + "lon": -4.5122213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BAKK", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6318688141, + "lat": 48.042566, + "lon": -4.4879715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "SDEF" + } + }, + { + "type": "node", + "id": 6318691512, + "lat": 48.0411694, + "lon": -4.4865289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SDEF", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ETKEL", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6323795300, + "lat": 47.9858826, + "lon": -4.4238206, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29EECCP", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6325924981, + "lat": 48.8425213, + "lon": 2.5859978, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Bienvenüe", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "operator": "monautopartage", + "ref": "202", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6328064383, + "lat": 46.901142, + "lon": 6.3514777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*s25*P02546260", + "socket:type1": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6328064384, + "lat": 46.9011394, + "lon": 6.3514126, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*s25*P02546260", + "socket:type1": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6328067685, + "lat": 46.9011369, + "lon": 6.3513476, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*s25*P02546260", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6328741141, + "lat": 49.7705946, + "lon": 1.7512657, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "owner": "SDE 76", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 Kw" + } + }, + { + "type": "node", + "id": 6328790025, + "lat": 49.7662878, + "lon": 1.7454106, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "owner": "SDE 76", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 Kw" + } + }, + { + "type": "node", + "id": 6329740385, + "lat": 43.411877, + "lon": 3.6906672, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6332776169, + "lat": 43.8125131, + "lon": 4.3163228, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6332782325, + "lat": 43.8126828, + "lon": 4.3167877, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6333599098, + "lat": 48.8126232, + "lon": 2.3233049, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*004", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333599099, + "lat": 48.8125888, + "lon": 2.3234642, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*004", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333599100, + "lat": 48.8125643, + "lon": 2.3235724, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*004", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333613047, + "lat": 48.8124268, + "lon": 2.3076497, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*002", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333613048, + "lat": 48.8124761, + "lon": 2.307521, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*002", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333613049, + "lat": 48.8125337, + "lon": 2.3073705, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*002", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333615531, + "lat": 48.8174865, + "lon": 2.3177568, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*003", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333615532, + "lat": 48.8173633, + "lon": 2.3182416, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*003", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6333615533, + "lat": 48.8173934, + "lon": 2.3181198, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:type": "private", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Ville de Montrouge", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V08*P92049*003", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW", + "source": "survey 10/2018", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 6335782615, + "lat": 45.1386548, + "lon": 5.6939792, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "12", + "description": "POINT P3B pour 12 Vélos à Assistance Electrique. Le câble de charge adapté à votre vélo électrique peut être emprunté sur place ou commandé directement sur www.bike-energy.com", + "name": "Station de Recharge VAE", + "operator": "Becton Dickinson Rowa France", + "source": "https://bike-energy.com/fr/O%C3%B9-puis-je-charger-mon-v%C3%A9lo-%C3%A9lectrique/" + } + }, + { + "type": "node", + "id": 6335786685, + "lat": 48.6893149, + "lon": 2.3828379, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "POINT P2B für 2 E-Bikes. Das passende Ladekabel für Ihr E-Bike kann vor Ort ausgeliehen oder direkt auf www.bike-energy.com bestellt werden.", + "fixme": "vérifier la position", + "level": "1", + "name": "bike-energy Ladestation", + "operator": "Boutique SNCF" + } + }, + { + "type": "node", + "id": 6340198605, + "lat": 46.4930551, + "lon": -1.4252883, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85156*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6343518690, + "lat": 43.3797178, + "lon": -0.3771303, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "MobiVE - Serres-Castet", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*117", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6343518691, + "lat": 43.3692384, + "lon": -0.3488618, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "MobiVE - Montardon", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*80", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6348130163, + "lat": 46.4175834, + "lon": 0.3121914, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref": "B019", + "ref:EU:EVSE": "FR*S86*PSORE*B019", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6348312124, + "lat": 43.8314596, + "lon": 5.785718, + "tags": { + "amenity": "charging_station", + "fee": "no", + "layer": "0", + "name": "Parking Centre Ville" + } + }, + { + "type": "node", + "id": 6353144014, + "lat": 47.0047932, + "lon": 3.187613, + "tags": { + "addr:city": "Coulanges-lès-Nevers", + "addr:housenumber": "2", + "addr:street": "Rue Louise Michel", + "amenity": "charging_station", + "capacity": "2", + "name": "Parking de l'Église", + "payment:credit_cards": "yes", + "phone": "+33 3 86 59 76 90", + "website": "http://www.sieeen.orios-infos.com/" + } + }, + { + "type": "node", + "id": 6356732761, + "lat": 46.8839552, + "lon": 6.4574388, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "2", + "name": "Hôtel Le Tillau Destination Charger", + "note": "Tesla only/14kW", + "operator": "Hotel Le Tillau", + "short_name": "Tesla", + "socket:type2": "2", + "website": "https://www.tesla.com/fr_FR/findus/location/charger/dc49520" + } + }, + { + "type": "node", + "id": 6358519242, + "lat": 46.8206654, + "lon": 3.4506681, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6360291637, + "lat": 49.8715039, + "lon": 2.2995485, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "brand": "bike-energy", + "brand:wikidata": "Q67770877", + "capacity": "2", + "contact:city": "Amiens", + "contact:postcode": "80000", + "contact:street": "Rue Alexandre Dumas", + "description": "POINT P2B für 2 E-Bikes. Das passende Ladekabel für Ihr E-Bike kann vor Ort ausgeliehen oder direkt auf www.bike-energy.com bestellt werden.", + "name": "bike-energy", + "network": "bike-energy", + "operator": "bike-energy", + "operator:wikidata": "Q67770877" + } + }, + { + "type": "node", + "id": 6360504944, + "lat": 44.8514698, + "lon": -0.6142958, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "Freshmile;Plugsurfing", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "freshmile", + "socket:chademo": "1", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6362896767, + "lat": 45.7894875, + "lon": 4.6120464, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 6367366302, + "lat": 45.4930585, + "lon": 1.0609688, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24218*001", + "ref:EU:EVSE": "FR*S24*PMB24*42", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6367379897, + "lat": 45.5326115, + "lon": 0.6620846, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Gambetta", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24311*001", + "ref:EU:EVSE": "FR*S24*PMB24*73", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6367381724, + "lat": 45.5289734, + "lon": 0.664805, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Saint-Sauveur", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24311*002", + "ref:EU:EVSE": "FR*S24*PMB24*74", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6367900202, + "lat": 46.8251815, + "lon": -0.1423724, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79005P0027A", + "scooter": "yes", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "voltage": "230" + } + }, + { + "type": "node", + "id": 6370112443, + "lat": 45.4660038, + "lon": 4.3523562, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Villars", + "ref:EU:EVSE": "FRS42P42330B1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6374245574, + "lat": 44.1313443, + "lon": 2.6825322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12006*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6378646963, + "lat": 44.4852574, + "lon": 6.5529685, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05098*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6380276246, + "lat": 43.6663634, + "lon": 7.1247275, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Cagnes-sur-Mer Supercharger", + "note": "4 places de plus pres de l'Avenue des Alpes", + "operator": "Tesla" + } + }, + { + "type": "node", + "id": 6383432947, + "lat": 48.8497032, + "lon": 2.3075518, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9007*02", + "socket:chademo": "2", + "socket:schuko": "1", + "socket:schuko:output": "3 kW", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://belib.paris" + } + }, + { + "type": "node", + "id": 6383433038, + "lat": 48.8496914, + "lon": 2.30757, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9007*02", + "socket:chademo": "2", + "socket:chademo:output": "22 kW", + "socket:schuko": "1", + "socket:schuko:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "22 kW", + "socket:type3": "1", + "socket:type3:output": "22 kW", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://belib.paris" + } + }, + { + "type": "node", + "id": 6383433285, + "lat": 48.8497123, + "lon": 2.3075334, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9007*02", + "socket:chademo": "2", + "socket:chademo:output": "22 kW", + "socket:schuko": "1", + "socket:schuko:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "22 kW", + "socket:type3": "1", + "socket:type3:output": "22 kW", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://belib.paris" + } + }, + { + "type": "node", + "id": 6388038352, + "lat": 43.4317825, + "lon": 3.5966973, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6388232758, + "lat": 48.9841177, + "lon": 2.2275858, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LLMW", + "source": "survey 2022", + "website": "http://xfm.fr/LLMW1" + } + }, + { + "type": "node", + "id": 6388232759, + "lat": 48.9841384, + "lon": 2.2275265, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LMQS", + "source": "survey 2022", + "website": "http://xfm.fr/LMQS1" + } + }, + { + "type": "node", + "id": 6389394748, + "lat": 47.0851525, + "lon": -1.281992, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44043B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6391157087, + "lat": 46.2799252, + "lon": 4.7925843, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6391163098, + "lat": 46.3025899, + "lon": 4.8321646, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6391180436, + "lat": 46.3613182, + "lon": 4.8413676, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6391191070, + "lat": 46.4340293, + "lon": 4.6627449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sydesil" + } + }, + { + "type": "node", + "id": 6391214426, + "lat": 46.307462, + "lon": 4.6029261, + "tags": { + "amenity": "charging_station", + "operator": "Sydesl" + } + }, + { + "type": "node", + "id": 6391516672, + "lat": 46.2386643, + "lon": 1.4836261, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6391785406, + "lat": 48.9824829, + "lon": 6.0212722, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "freshmile", + "ref": "KDBU1;KDBU2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3", + "website": "https://ev-charge.freshmile.com/location/FMPWRP/KDBU1" + } + }, + { + "type": "node", + "id": 6395568595, + "lat": 47.4808902, + "lon": -2.1587809, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44098B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6395650856, + "lat": 49.5181653, + "lon": 0.5376314, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "no", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "scooter": "no", + "socket:type2": "1", + "socket:type3": "1", + "truck": "no" + } + }, + { + "type": "node", + "id": 6396819000, + "lat": 48.7433221, + "lon": 2.352959, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "mapillary": "318000529765685", + "survey:date": "2018-11-14" + } + }, + { + "type": "node", + "id": 6397960005, + "lat": 46.276313, + "lon": 4.0386473, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6400029837, + "lat": 46.369726, + "lon": 6.481316, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "DBT" + } + }, + { + "type": "node", + "id": 6404078073, + "lat": 49.2848353, + "lon": 1.0065775, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Fabrique des Savoirs", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76231*002", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6404866387, + "lat": 47.6532264, + "lon": -1.9906689, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44007A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6409009373, + "lat": 44.7364406, + "lon": 4.5987852, + "tags": { + "addr:place": "Place du Champ de Mars", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07186*A", + "ref:EU:EVSE": "FR*S07*P07186*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6416606934, + "lat": 44.2253706, + "lon": 4.3496061, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33 8 05 02 14 80", + "ref": "FR*S30*P30164*001", + "ref:EU:EVSE": "FR*S30*P30164*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2", + "voltage": "22kVA" + } + }, + { + "type": "node", + "id": 6419541183, + "lat": 44.8453112, + "lon": -0.6531557, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 6419543388, + "lat": 44.8452964, + "lon": -0.6531102, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 6419543397, + "lat": 44.8452821, + "lon": -0.6530699, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 6419543398, + "lat": 44.8452678, + "lon": -0.6530324, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 6424314735, + "lat": 47.9858763, + "lon": 7.0487836, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Borne de recharge VTTAE Bosch", + "operator": "bosch" + } + }, + { + "type": "node", + "id": 6425322982, + "lat": 45.5942351, + "lon": 5.2680442, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "operator": "E. Leclerc", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:type3": "2", + "socket:type3:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 6425965952, + "lat": 45.3921806, + "lon": 0.6981085, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*24", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6427790941, + "lat": 43.5686209, + "lon": 4.1875432, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30003002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6427950824, + "lat": 43.562525, + "lon": 1.4798141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fixme": "Est-ce réellement une station d'autopartage ? Si oui, ajouter plus d'informations.", + "operator": "ze-watt" + } + }, + { + "type": "node", + "id": 6429371388, + "lat": 43.5681938, + "lon": 4.1996312, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30003001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6433014828, + "lat": 49.4867994, + "lon": 0.5741149, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6436257885, + "lat": 43.8932961, + "lon": 1.8821315, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "4", + "name": "ChargePoint", + "operator": "E.Leclerc" + } + }, + { + "type": "node", + "id": 6436740655, + "lat": 45.5968049, + "lon": 4.0711259, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking avenue thermale", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Montbrison", + "ref:EU:EVSE": "FRS42P42147B1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6436740656, + "lat": 45.6074688, + "lon": 4.0602306, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Bouvier", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "Montbrison", + "ref:EU:EVSE": "FRS42P42147A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6437045995, + "lat": 49.607316, + "lon": 2.0770029, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6437047049, + "lat": 49.6016998, + "lon": 2.0816646, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "6", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Crèvecoeur-le-Grand", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PPGJJYJCBOV", + "socket:type2": "6", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6438017276, + "lat": 43.2485615, + "lon": 5.7964556, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "3", + "name": "Tesla Destination Charger", + "not:brand:wikidata": "Q17089620", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 6439616010, + "lat": 47.9270324, + "lon": 1.9060624, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6439618459, + "lat": 47.927009, + "lon": 1.9058495, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6439618460, + "lat": 47.9271098, + "lon": 1.9062451, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6439670234, + "lat": 44.6457874, + "lon": 2.566245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12094*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6440358617, + "lat": 42.5892855, + "lon": 8.9062257, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 6440733536, + "lat": 46.0611788, + "lon": 4.4918236, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "COR" + } + }, + { + "type": "node", + "id": 6442333643, + "lat": 48.8277647, + "lon": 2.6595984, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6443047987, + "lat": 42.7746582, + "lon": 9.4740468, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Mairie de Brando", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6446630030, + "lat": 48.0026168, + "lon": 6.8736347, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Cahors", + "capacity": "4", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "La Bresse - Piscine", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "MQHY1;MQHY2;MQHY3;MQHY4", + "scooter": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 6447539993, + "lat": 43.7570365, + "lon": 4.3123631, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30020*001", + "ref:EU:EVSE": "FR*S30*P30020*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6448517896, + "lat": 48.9003834, + "lon": 6.0516937, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6448517897, + "lat": 48.9003391, + "lon": 6.0516636, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6448517898, + "lat": 48.9002986, + "lon": 6.0516326, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6448517899, + "lat": 48.9002579, + "lon": 6.0515968, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6448559401, + "lat": 43.773513, + "lon": 4.160268, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30091*001", + "ref:EU:EVSE": "FR*S30*P30091*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6451707390, + "lat": 49.8769692, + "lon": 2.3131397, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PHUDFPP", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6454007647, + "lat": 49.2228427, + "lon": 2.9090308, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6455019428, + "lat": 49.0257751, + "lon": 2.221607, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LLAF", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LLAF1" + } + }, + { + "type": "node", + "id": 6463779834, + "lat": 47.3842212, + "lon": -1.558973, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44027A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6465300061, + "lat": 43.6093676, + "lon": 1.4974565, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Balma - Place Du 12 Mars 1962", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Toulouse Métropole", + "ref": "FR-M31-E31044-001-1;FR-M31-E31044-001-2", + "ref:EU:EVSE": "FR*M31*P31044*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "website": "https://reveocharge.com/" + } + }, + { + "type": "node", + "id": 6468206096, + "lat": 47.3313144, + "lon": -1.6268224, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44209B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6481608251, + "lat": 43.6146723, + "lon": 1.4883835, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Power Dot - Balma", + "operator": "Power dot" + } + }, + { + "type": "node", + "id": 6482220485, + "lat": 47.9994278, + "lon": -4.1021621, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29GUSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6483535521, + "lat": 49.4094305, + "lon": 1.0520207, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place des Provinces", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76322*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6484096217, + "lat": 47.896934, + "lon": -3.0128047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Zone d'activites de Ty Er Douar", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56010*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6484205264, + "lat": 47.3373937, + "lon": -1.2673895, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49069*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6486400112, + "lat": 44.0918504, + "lon": 3.5459002, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30105*001", + "ref:EU:EVSE": "FR*S30*P30105*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6493223851, + "lat": 43.5659177, + "lon": 1.4738385, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 6494803958, + "lat": 43.2797853, + "lon": 1.1357589, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6496290423, + "lat": 43.698023, + "lon": 7.2519273, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 6498392634, + "lat": 42.9590817, + "lon": 2.2597916, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Luc-Sur-Aude Charging Station", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11209001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "voltage": "230" + } + }, + { + "type": "node", + "id": 6498830713, + "lat": 43.8366191, + "lon": 5.7835227, + "tags": { + "amenity": "charging_station", + "fee": "no", + "operator": "Parking", + "socket:schuko": "4" + } + }, + { + "type": "node", + "id": 6501660104, + "lat": 47.3814949, + "lon": -1.710648, + "tags": { + "amenity": "charging_station", + "brand": "Sydégo!", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44111A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6502317785, + "lat": 45.9036233, + "lon": 6.133402, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Dupanloup", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74010*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6503389266, + "lat": 47.0899519, + "lon": -1.279377, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "mapillary": "3009136872665037", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref": "FR*S44*E44043A1", + "ref:EU:EVSE": "FR*S44*P44043A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6511529381, + "lat": 48.497971, + "lon": 7.467952, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Ville de Rosheim", + "ref:EU:EVSE": "FR*V05*P67411*003", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6512075785, + "lat": 44.3968608, + "lon": 1.7698001, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46173*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6513905692, + "lat": 44.4009331, + "lon": 1.6459014, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46073*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6515266318, + "lat": 43.6373336, + "lon": 5.5272141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*M13*P13059*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6516817547, + "lat": 47.2793418, + "lon": 5.5657554, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://www.freshmile.com/", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "payment:mastercard": "yes", + "payment:visa": "no", + "payment:visa_debit": "yes", + "ref": "DSAF1;DFNP1", + "ref:EU:EVSE": "FR*S70*P07040834", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey;freshmile" + } + }, + { + "type": "node", + "id": 6516851465, + "lat": 46.8810446, + "lon": -0.0199268, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B069", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref": "BO69", + "ref:EU:EVSE": "FR*S86*PSORE*B069", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6518785358, + "lat": 47.8498273, + "lon": -1.6812211, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 6519084325, + "lat": 42.7889129, + "lon": 3.0342806, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Cahors", + "mapillary": "491527345609288", + "model": "City", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66017*001", + "ref:EU:EVSE": "FR*S66*P66017*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2", + "source": "survey 2018" + } + }, + { + "type": "node", + "id": 6524294054, + "lat": 42.6695008, + "lon": 2.8790355, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 6528726712, + "lat": 45.0444352, + "lon": 5.0305702, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 6532611037, + "lat": 47.5981425, + "lon": 7.5524155, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6534835186, + "lat": 43.6167103, + "lon": 7.071437, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6535856664, + "lat": 47.1674665, + "lon": 0.2403983, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6544062182, + "lat": 43.8396316, + "lon": 4.9180974, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Simone", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMED 13", + "ref:EU:EVSE": "FR*S13*P13116*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6544125580, + "lat": 43.8074815, + "lon": 4.9490723, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Simone", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMED 13", + "ref:EU:EVSE": "FR*S13*P13064*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6544904919, + "lat": 47.3038443, + "lon": 5.41569, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6546965667, + "lat": 48.5415806, + "lon": 0.2450433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61156A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6550568608, + "lat": 45.440779, + "lon": 4.3993227, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "e totem smart charging" + } + }, + { + "type": "node", + "id": 6551783471, + "lat": 48.887689, + "lon": 6.2287572, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 6553414839, + "lat": 43.8170907, + "lon": 5.7985195, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Parking de Près Combaux/ Covoiturage SDE04", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref": "FR*S04*P04112*E", + "ref:EU:EVSE": "FR*EBN*PIZWGVKKKLW", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6554620638, + "lat": 42.0064222, + "lon": 9.457469, + "tags": { + "amenity": "charging_station", + "name": "Tesla" + } + }, + { + "type": "node", + "id": 6560955337, + "lat": 48.8307598, + "lon": 2.588853, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 6563452124, + "lat": 47.1045355, + "lon": 5.2624133, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6564581249, + "lat": 46.1178395, + "lon": 5.4901905, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Ceignes Haut Bugey", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 6564703679, + "lat": 45.198326, + "lon": 5.7452485, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Vinci" + } + }, + { + "type": "node", + "id": 6564703680, + "lat": 45.198292, + "lon": 5.7452304, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Vinci" + } + }, + { + "type": "node", + "id": 6564703681, + "lat": 45.1982483, + "lon": 5.7452032, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "mapillary": "823977751546052", + "operator": "Vinci", + "survey:date": "2019-06-16" + } + }, + { + "type": "node", + "id": 6564703682, + "lat": 45.1982091, + "lon": 5.7451801, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Vinci" + } + }, + { + "type": "node", + "id": 6564703683, + "lat": 45.1981756, + "lon": 5.7451589, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Vinci" + } + }, + { + "type": "node", + "id": 6565098800, + "lat": 43.5441483, + "lon": 7.0344334, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6571035158, + "lat": 49.5104623, + "lon": 0.9771016, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*41*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6576684080, + "lat": 45.8532012, + "lon": 5.0583903, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "e-totem", + "wikimedia_commons": "File:Voiture électrique en recharge - parking de la Portelle (Montluel) en septembre 2022.JPG" + } + }, + { + "type": "node", + "id": 6577722102, + "lat": 43.6880142, + "lon": 4.2695121, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30341*002", + "ref:EU:EVSE": "FR*S30*P30341*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6578414441, + "lat": 44.5877535, + "lon": 4.1294363, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07329*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6579678206, + "lat": 44.4568551, + "lon": 6.2930926, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "parking:fee": "no", + "ref": "FR*S04*P04033*A", + "ref:EU:EVSE": "FR*EBN*PZACDZS", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 6579678207, + "lat": 44.5472251, + "lon": 6.2775003, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Grand Logis", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S05*P05040*A", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "truck": "no" + } + }, + { + "type": "node", + "id": 6580023932, + "lat": 43.955567, + "lon": 6.8927201, + "tags": { + "amenity": "charging_station", + "covered": "no", + "fee": "no" + } + }, + { + "type": "node", + "id": 6580246606, + "lat": 47.9090772, + "lon": 2.135949, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6581506683, + "lat": 45.1016483, + "lon": -0.3895392, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33114*001", + "ref:EU:EVSE": "FR*S33*PMB33*31", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6581886252, + "lat": 45.7503613, + "lon": 5.1686148, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38316*A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 6582136544, + "lat": 48.7267115, + "lon": 2.2624592, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "fixme": "vérifier accès, emplacament, operateur", + "location": "parking", + "opening_hours": "24/7", + "operator": "Gare TGV Massy", + "parking:fee": "yes", + "socket": "8" + } + }, + { + "type": "node", + "id": 6583691895, + "lat": 43.5247559, + "lon": 6.1500512, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "COTIGNAC_621 rue Ferraillon", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83046*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6583853249, + "lat": 49.1924076, + "lon": 6.6832709, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 6586531060, + "lat": 46.3252256, + "lon": 6.267951, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74070*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-06-29" + } + }, + { + "type": "node", + "id": 6586531061, + "lat": 46.3072527, + "lon": 6.3031014, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74105*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-02-07" + } + }, + { + "type": "node", + "id": 6586531064, + "lat": 46.2691537, + "lon": 6.2583219, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PELVWIEUKPA", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2017-10-05" + } + }, + { + "type": "node", + "id": 6586531065, + "lat": 46.2983309, + "lon": 6.3280619, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PRZHD8TNRZR", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-06-19" + } + }, + { + "type": "node", + "id": 6586531066, + "lat": 46.2652807, + "lon": 6.3713026, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74043*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-04-16" + } + }, + { + "type": "node", + "id": 6586531067, + "lat": 46.1911163, + "lon": 6.3176411, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74153*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-06-27" + } + }, + { + "type": "node", + "id": 6586531068, + "lat": 46.1888378, + "lon": 6.2113725, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74133*B", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "start_date": "2018-01-19" + } + }, + { + "type": "node", + "id": 6586531069, + "lat": 46.1913677, + "lon": 6.2097471, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PIMKLPMKKZY", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-03-12" + } + }, + { + "type": "node", + "id": 6586531070, + "lat": 46.1917697, + "lon": 6.2340164, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PGTJY9D5ZAF", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-06-21" + } + }, + { + "type": "node", + "id": 6586531071, + "lat": 46.1872785, + "lon": 6.2418035, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74012*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "start_date": "2018-02-09" + } + }, + { + "type": "node", + "id": 6586531072, + "lat": 46.1977978, + "lon": 6.2431305, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PDR9TBERC11", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-03-13" + } + }, + { + "type": "node", + "id": 6586531073, + "lat": 46.1957759, + "lon": 6.2500942, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PSFUJIVKVOR", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2017-12-12" + } + }, + { + "type": "node", + "id": 6586531074, + "lat": 46.2010712, + "lon": 6.2500499, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PZUDHFC7WPK", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2017-12-12" + } + }, + { + "type": "node", + "id": 6586590204, + "lat": 46.336786, + "lon": 6.5201269, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref": "FR*S74*P74157*A", + "ref:EU:EVSE": "FR*EBN*PSBBFTCPVCD", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-05-02" + } + }, + { + "type": "node", + "id": 6586590205, + "lat": 46.3366184, + "lon": 6.4646273, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PABQ4SHJDQX", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-02-27" + } + }, + { + "type": "node", + "id": 6586590206, + "lat": 46.3548939, + "lon": 6.4280315, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74013*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2017-10-05" + } + }, + { + "type": "node", + "id": 6586590207, + "lat": 46.3323254, + "lon": 6.3749622, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74263*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-01-08" + } + }, + { + "type": "node", + "id": 6586590208, + "lat": 46.3459116, + "lon": 6.3580933, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PNZUZDQ7AS5", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2017-11-02" + } + }, + { + "type": "node", + "id": 6586590209, + "lat": 46.3678752, + "lon": 6.3250465, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74315*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-04-05" + } + }, + { + "type": "node", + "id": 6586788446, + "lat": 46.1059562, + "lon": 6.590606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74276*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6586788447, + "lat": 46.1605349, + "lon": 6.6705358, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74134*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-12-28" + } + }, + { + "type": "node", + "id": 6586788448, + "lat": 46.1817757, + "lon": 6.7025158, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74191*B", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "start_date": "2018-06-27" + } + }, + { + "type": "node", + "id": 6586788450, + "lat": 46.1833445, + "lon": 6.7056004, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74191*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "start_date": "2018-06-27" + } + }, + { + "type": "node", + "id": 6586851741, + "lat": 46.1680618, + "lon": 6.3201977, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74040*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6586851742, + "lat": 46.1426395, + "lon": 6.404395, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74311*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-06-29" + } + }, + { + "type": "node", + "id": 6586851743, + "lat": 46.1382279, + "lon": 6.4573296, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PYRJ3UX21SF", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-06-29" + } + }, + { + "type": "node", + "id": 6586893590, + "lat": 46.180037, + "lon": 6.2294982, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*POWMMX48HPN", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-09-24" + } + }, + { + "type": "node", + "id": 6586893591, + "lat": 46.2258268, + "lon": 6.3127895, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74229*A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "start_date": "2018-09-24" + } + }, + { + "type": "node", + "id": 6586935246, + "lat": 46.2807988, + "lon": 6.721013, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74001*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-06-28" + } + }, + { + "type": "node", + "id": 6586935248, + "lat": 46.39377, + "lon": 6.8013377, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "eborne", + "opening_hours": "24/7", + "operator": "Syane", + "ref": "FR*S74*P74237*A", + "socket:schuko": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "start_date": "2018-07-24" + } + }, + { + "type": "node", + "id": 6586935249, + "lat": 46.3793786, + "lon": 6.627796, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "parking:fee": "no", + "ref:EU:EVSE": "FR*EBN*PZSXXLQQOA8", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_cable": "0", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "start_date": "2018-05-17" + } + }, + { + "type": "node", + "id": 6586935252, + "lat": 46.3982133, + "lon": 6.578123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74119*B", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "start_date": "2018-06-19" + } + }, + { + "type": "node", + "id": 6586935253, + "lat": 46.3959122, + "lon": 6.5287174, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74218*A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "start_date": "2018-11-14" + } + }, + { + "type": "node", + "id": 6586964890, + "lat": 46.2018899, + "lon": 6.2726395, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "note": "Borne de charge gratuite pour les véhicules E-tron", + "operator": "Audi", + "socket:type2": "2", + "socket:type2:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 6587627451, + "lat": 46.1817974, + "lon": 6.234142, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Tesla", + "motorcar": "yes", + "operator": "Casino d'Annemasse", + "socket:type2": "2", + "socket:type2:output": "17 kW" + } + }, + { + "type": "node", + "id": 6587627452, + "lat": 46.1965195, + "lon": 6.2632424, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "operator": "Jean Lain Automobiles", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 6587627453, + "lat": 46.1987687, + "lon": 6.2675808, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "operator": "Renault Annemasse", + "socket:type3c": "2", + "socket:type3c:output": "22 kW" + } + }, + { + "type": "node", + "id": 6587627454, + "lat": 46.198811, + "lon": 6.2676103, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "operator": "Renault Annemasse", + "socket:type3c": "2", + "socket:type3c:output": "22 kW" + } + }, + { + "type": "node", + "id": 6587627455, + "lat": 46.2020338, + "lon": 6.2686591, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "operator": "Kia", + "socket:chademo": "1", + "socket:chademo:output": "40 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "40 kW" + } + }, + { + "type": "node", + "id": 6587627456, + "lat": 46.2014481, + "lon": 6.2639076, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "manufacturer": "Mennekes", + "motorcar": "yes", + "network": "Ford Annemasse - Garage du Lac", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Ford Annemasse - Garage du Lac", + "ref:EU:EVSE": "FR*G39*PMAURINFORD74100*1", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6587669790, + "lat": 46.1844823, + "lon": 6.2910585, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S74*P74094*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 6587669791, + "lat": 46.1800565, + "lon": 6.2160703, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "McDonalds", + "socket:type2": "2", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 6587669792, + "lat": 46.1959969, + "lon": 6.2311088, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Citiz", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 6587669793, + "lat": 46.1932667, + "lon": 6.2422393, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl", + "socket:type2": "1", + "socket:type2:output": "11 kW", + "socket:type3c": "1", + "socket:type3c:output": "11 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 6587669794, + "lat": 46.1988899, + "lon": 6.2643461, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "manufacturer": "EV tronic", + "motorcar": "yes", + "network": "Nissan Annemasse Groupe Maurin", + "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", + "operator": "Nissan - Annemasse", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMAURINNISSAN741001", + "socket:chademo": "1", + "socket:chademo:output": "40 kW", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 6589401608, + "lat": 43.6439268, + "lon": 3.8257493, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34116*001", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6589516708, + "lat": 49.4243745, + "lon": 2.8177191, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Margny-lès-Compiègne", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PMARGNYCOMP", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6589950794, + "lat": 46.1838116, + "lon": 6.6998608, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "manufacturer": "Tesla", + "operator": "Alpen Roc", + "socket:type2": "3", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 6589950797, + "lat": 46.1852632, + "lon": 6.6988344, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Tesla", + "motorcar": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6589950801, + "lat": 46.1837331, + "lon": 6.7073894, + "tags": { + "amenity": "charging_station", + "authentication:phone_call": "yes", + "capacity": "5", + "fee": "no", + "manufacturer": "Tesla", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Le Dahu", + "socket:type2": "5", + "socket:type2:output": "11 kW; 22 kW" + } + }, + { + "type": "node", + "id": 6589950822, + "lat": 46.1936162, + "lon": 6.7698687, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "4", + "fee": "yes", + "location": "indoor", + "motorcar": "yes", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 6590015049, + "lat": 46.1796633, + "lon": 6.7023146, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Champs Fleuris", + "socket:type2": "1", + "socket:type2:output": "14 kW" + } + }, + { + "type": "node", + "id": 6590015050, + "lat": 46.1753879, + "lon": 6.7073089, + "tags": { + "access": "customers", + "amenity": "charging_station", + "manufacturer": "Tesla", + "motorcar": "yes", + "operator": "La Chaumière", + "socket:type2": "1", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 6590661266, + "lat": 46.1558503, + "lon": 6.6878736, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Tesla", + "motorcar": "yes", + "operator": "Les Gets", + "socket:type2": "2", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 6590690462, + "lat": 46.1490385, + "lon": 6.6578624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "operator": "Les Gets", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 6590690463, + "lat": 46.1567236, + "lon": 6.665782, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Tesla", + "motorcar": "yes", + "note": "Prise industrielle P17 (7 kW) aussi disponible", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 6590690464, + "lat": 46.1607922, + "lon": 6.6695395, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Tesla", + "motorcar": "yes", + "operator": "Les Gets", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:type2_cable": "2" + } + }, + { + "type": "node", + "id": 6591734715, + "lat": 48.2488705, + "lon": 3.3251336, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89399*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6591915085, + "lat": 48.993637, + "lon": 2.0946537, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Conflans-Sainte-Honorine - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 6591962550, + "lat": 47.6001274, + "lon": -0.8346169, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place des Halles", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49367*001", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6593460333, + "lat": 47.1069826, + "lon": 6.1478527, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02543496", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6594460358, + "lat": 43.6950601, + "lon": 4.2741671, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30341*001", + "ref:EU:EVSE": "FR*S30*P30341*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6597065550, + "lat": 43.752657, + "lon": 4.4979619, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30034*002", + "ref:EU:EVSE": "FR*S30*P30034*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6598552022, + "lat": 49.2165122, + "lon": 6.171081, + "tags": { + "access": "yes", + "addr:city": "Hauconcourt", + "addr:country": "FR", + "addr:postcode": "57280", + "addr:street": "Route de Maizières-les-Metz", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla, Inc.", + "capacity": "12", + "fee": "yes", + "motorcar": "yes", + "name": "Metz Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/metzsupercharger" + } + }, + { + "type": "node", + "id": 6610211322, + "lat": 48.7465002, + "lon": 2.3558123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Shneider Electric" + } + }, + { + "type": "node", + "id": 6611993629, + "lat": 49.4691094, + "lon": 1.1171845, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de la Haie", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76108*002", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6612188252, + "lat": 45.1704748, + "lon": 5.4125675, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no" + } + }, + { + "type": "node", + "id": 6613033722, + "lat": 44.7827584, + "lon": 3.6318639, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48070*001", + "ref:EU:EVSE": "FR*S48*P48070*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6616075079, + "lat": 44.6193635, + "lon": 5.7021885, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05146*A", + "socket:type2": "2", + "socket:typee": "2", + "wikimedia_commons": "File:Point de recharge de véhicules électriques, aire de Saint-Julien-en-Beauchêne.jpg" + } + }, + { + "type": "node", + "id": 6617759091, + "lat": 46.7769683, + "lon": 6.373401, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "note": "Position inconnue depuis la mise en place de la halle" + } + }, + { + "type": "node", + "id": 6619744585, + "lat": 43.8074652, + "lon": 4.3724074, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*007", + "ref:EU:EVSE": "FR*S30*P30189*007", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6619744609, + "lat": 43.813997, + "lon": 4.3676314, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*008", + "ref:EU:EVSE": "FR*S30*P30189*008", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6621286852, + "lat": 48.0921563, + "lon": -4.3303904, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29GTNV", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.ouestcharge.fr" + } + }, + { + "type": "node", + "id": 6621927472, + "lat": 47.8414047, + "lon": 6.5616864, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Champs de foire", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P0702278", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6621927473, + "lat": 47.8414168, + "lon": 6.561677, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Champs de foire", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P0702278", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "BDOrtho IGN" + } + }, + { + "type": "node", + "id": 6622590369, + "lat": 49.9465442, + "lon": 3.4161414, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Rue Laurent Cavalier", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "0068", + "ref:EU:EVSE": "FR*S02*P0233468", + "socket:type1": "2", + "socket:type1:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://my.freshmile.com/charge/00681" + } + }, + { + "type": "node", + "id": 6624612278, + "lat": 43.8269139, + "lon": 1.2958428, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "freshmile" + } + }, + { + "type": "node", + "id": 6624870432, + "lat": 48.2259421, + "lon": -4.5065969, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29FIFI", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6630630498, + "lat": 43.8016285, + "lon": 1.2170069, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "freshmile" + } + }, + { + "type": "node", + "id": 6631008270, + "lat": 47.9995443, + "lon": -4.1063738, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29SYCP", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6632105833, + "lat": 48.6867592, + "lon": 2.0178065, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "222518535982560", + "motorcar": "yes", + "name": "Choisel - Mairie", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "4", + "ref:EU:EVSE": "FR*A07*PCCHVC04", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6633036772, + "lat": 48.4821597, + "lon": -2.70471, + "tags": { + "addr:street": "Rue Louis Paturel", + "amenity": "charging_station", + "capacity": "2", + "description": "1 prise type 21 prise CHAdeMO1 prise ccs", + "name": "Chargeur rapide Brev'Car", + "operator": "Brev'Car", + "phone": "+33 2 96 74 16 46" + } + }, + { + "type": "node", + "id": 6635154272, + "lat": 47.5753512, + "lon": -0.4694869, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6635154273, + "lat": 47.5753704, + "lon": -0.469525, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6635286644, + "lat": 44.1171081, + "lon": 4.1106872, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30007*008", + "ref:EU:EVSE": "FR*S30*P30007*008", + "socket:chademo": "1", + "socket:chademo:output": "36", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:type2_combo:output": "36", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6635861672, + "lat": 46.4808806, + "lon": 3.9715892, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sydesl" + } + }, + { + "type": "node", + "id": 6635875000, + "lat": 42.4867907, + "lon": 3.1265233, + "tags": { + "access": "permit", + "amenity": "charging_station", + "capacity": "3", + "name": "Hôtel des Elmes", + "operator": "Tesla" + } + }, + { + "type": "node", + "id": 6637630051, + "lat": 46.3063709, + "lon": 3.2918604, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PSAINTPOURCAIN", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6637696692, + "lat": 46.2406918, + "lon": 3.1571579, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PCHANTELLE", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6638254533, + "lat": 45.5554253, + "lon": 5.3060704, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 6638455253, + "lat": 47.748332, + "lon": -3.0761663, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56096*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6640087663, + "lat": 45.6186263, + "lon": -1.0412657, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "operator": "Ingesteam" + } + }, + { + "type": "node", + "id": 6650056954, + "lat": 46.6551891, + "lon": 0.3639102, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B125", + "ref:EU:EVSE": "FR*S86*PSORE*B125", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6651691248, + "lat": 44.1527174, + "lon": 1.7517082, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6652049087, + "lat": 48.7601998, + "lon": -1.4670205, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6653111232, + "lat": 46.009476, + "lon": 6.1685658, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "payment:credit_card": "yes", + "payment:phone_app": "yes", + "payment:rfid_card": "yes", + "ref:EU:EVSE": "FR*S74*P74137*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6654954177, + "lat": 44.1381753, + "lon": 4.2452301, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30055*001", + "ref:EU:EVSE": "FR*S30*P30055*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6657786853, + "lat": 48.6994103, + "lon": 6.133867, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0,5€ TTC/30 min de charge", + "fee": "yes", + "level": "0", + "official_name": "MGN_CC Cascades", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 6657786854, + "lat": 48.6218687, + "lon": 6.1616894, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "1€/1h", + "fee": "yes", + "official_name": "MGN_Parking Mairie Ludres", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "RFID card", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 6657786856, + "lat": 48.6500436, + "lon": 6.1942108, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Heillecourt - Embanie", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 6657786857, + "lat": 48.6585845, + "lon": 6.2290076, + "tags": { + "access": "card", + "amenity": "charging_station", + "capacity": "2", + "charge": "1€/1H", + "fee": "yes", + "official_name": "MGN_Piscine Laneuveville", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:debit_cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 6657786858, + "lat": 48.7070997, + "lon": 6.2523452, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charge": "1 € / 1 h", + "fee": "yes", + "name": "MGN_Ateliers Artisanaux", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 6657786859, + "lat": 48.6931524, + "lon": 6.1995985, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "1€/1H", + "fee": "yes", + "official_name": "MGN_Parking Mail de l'horloge", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes", + "socket:schuko": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 6662580647, + "lat": 48.8605195, + "lon": -1.2068647, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6663358213, + "lat": 43.1957277, + "lon": 5.7991403, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83016*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6665310541, + "lat": 44.2275358, + "lon": 4.1636356, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30152*001", + "ref:EU:EVSE": "FR*S30*P30152*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6668003351, + "lat": 45.1052148, + "lon": 2.8625225, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "operator": "EVli k" + } + }, + { + "type": "node", + "id": 6668050727, + "lat": 49.119372, + "lon": 4.2456955, + "tags": { + "access": "customers", + "addr:city": "Les Petites-Loges", + "addr:street": "A4 - Aire de Reims-Champagne-Nord", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Reims-Champagne-Nord Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedereimschampagnenordsupercharger" + } + }, + { + "type": "node", + "id": 6668050728, + "lat": 49.1205812, + "lon": 4.2428569, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "operator": "DBT", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6668050731, + "lat": 49.1206927, + "lon": 4.242703, + "tags": { + "access": "customers", + "addr:city": "Les Petites-Loges", + "addr:street": "A4 - Aire de Reims-Champagne-Sud", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Reims-Champagne-Sud Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedereimschampagnesudsupercharger" + } + }, + { + "type": "node", + "id": 6669488797, + "lat": 49.4174385, + "lon": 2.8220031, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PRMFJTS", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6669488798, + "lat": 49.413278, + "lon": 2.8220017, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Ancien Hôpital", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PBHPKTX", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6669518734, + "lat": 49.41183, + "lon": 2.8090467, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no", + "operator": "Renault", + "operator:wikidata": "Q6686" + } + }, + { + "type": "node", + "id": 6669518735, + "lat": 49.4153367, + "lon": 2.8025403, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Venette", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PVENETTE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6669518736, + "lat": 49.4150396, + "lon": 2.8054237, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no", + "operator": "Nissan", + "operator:wikidata": "Q20165", + "operator:wikipedia": "en:Nissan" + } + }, + { + "type": "node", + "id": 6669518737, + "lat": 49.4105142, + "lon": 2.8032531, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Peugeot" + } + }, + { + "type": "node", + "id": 6669518738, + "lat": 49.418153, + "lon": 2.8242186, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "description": "In Vinci underground parking", + "description:fr": "Dans le parking souterrain Vinci", + "location": "underground", + "operator": "Indigo" + } + }, + { + "type": "node", + "id": 6670660544, + "lat": 49.5879897, + "lon": 2.8387075, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SEZEO 60 - Tranche 2", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PNPKDFX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6672104579, + "lat": 49.5667476, + "lon": 0.9542431, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6672541350, + "lat": 47.3480381, + "lon": -2.5071461, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Sydego - Parking de la Poste", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44211A", + "socket:type2": "2", + "socket:typee": "2", + "source": "https://www.data.gouv.fr/fr/datasets/borne-de-recharge-de-vehicules-electriques-sur-la-turballe/" + } + }, + { + "type": "node", + "id": 6674026018, + "lat": 43.1951673, + "lon": 5.8063808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83016*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6676047939, + "lat": 46.0498825, + "lon": 5.3300365, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6680060851, + "lat": 44.1189441, + "lon": 4.0886548, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30007*001", + "ref:EU:EVSE": "FR*S30*P30007*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6680539975, + "lat": 47.8841122, + "lon": 6.8549477, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "6", + "fee": "no", + "operator": "SIVU Tourisme Hautes Vosges", + "ref": "eBike PowerStation" + } + }, + { + "type": "node", + "id": 6680566904, + "lat": 48.6908225, + "lon": -1.3690373, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6680982588, + "lat": 44.6063201, + "lon": -0.9397417, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33284*001", + "ref:EU:EVSE": "FR*S33*PMB33*95", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6681171878, + "lat": 44.384392, + "lon": 3.9396792, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30090*001", + "ref:EU:EVSE": "FR*S30*P30090*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6681658790, + "lat": 47.2580178, + "lon": -1.5092951, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 6681678485, + "lat": 47.2589597, + "lon": -1.5100571, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 6685199833, + "lat": 47.4753175, + "lon": -1.7610228, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44015A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6688054074, + "lat": 44.0230313, + "lon": 3.3019817, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12168*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6688228329, + "lat": 48.8068015, + "lon": 2.618141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Émerainville RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "operator": "Clem'", + "ref": "209", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6689777732, + "lat": 49.1193593, + "lon": 4.2458188, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "operator": "DBT", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6690856348, + "lat": 44.4355576, + "lon": 3.9334394, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48198*001", + "ref:EU:EVSE": "FR*S48*P48198*001", + "socket:type2": "1", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6694160612, + "lat": 44.363906, + "lon": 3.746396, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Borne de rechargement électrique", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref:EU:EVSE": "FR*S48*P48116*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6694286808, + "lat": 43.9492428, + "lon": 4.5417015, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Le Pont du Gard", + "ref:EU:EVSE": "FR*A30*P30212*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6696859280, + "lat": 50.7068218, + "lon": 2.1248394, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Pays de Lumbres", + "ref:EU:EVSE": "FR*H10*P62534*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6697592647, + "lat": 44.1173801, + "lon": 4.1069968, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6697592648, + "lat": 44.1173385, + "lon": 4.1069964, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6697592665, + "lat": 44.1152739, + "lon": 4.1085622, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6698848704, + "lat": 48.8225648, + "lon": 2.2844499, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "crossing": "uncontrolled", + "crossing_ref": "zebra", + "fee": "yes", + "highway": "crossing", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*41", + "socket:type2": "9", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6699017657, + "lat": 48.5895264, + "lon": 3.5579146, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "operator": "INEO TINEA", + "owner": "SDEA10", + "phone": "+33 9 77 55 43 49", + "ref:EU:EVSE": "FR*S10*P10420A", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://newmotion.com" + } + }, + { + "type": "node", + "id": 6699481545, + "lat": 48.5782313, + "lon": 2.8289542, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77426A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6700267778, + "lat": 43.1966891, + "lon": 5.8035972, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83016*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6700326255, + "lat": 47.8443804, + "lon": -2.723155, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue des Genêts", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56222*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6700770778, + "lat": 48.7940797, + "lon": -1.3944265, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "e-charge50@sdem50.fr", + "fee": "yes", + "operator": "e-charge50", + "operator:website": "http://www.e-charge50.fr", + "phone": "+33 8 06 80 20 02" + } + }, + { + "type": "node", + "id": 6700814510, + "lat": 43.4567235, + "lon": 5.8527464, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Hyper U Saint-Maximin-la-Sainte-Baume" + } + }, + { + "type": "node", + "id": 6703192494, + "lat": 47.9385797, + "lon": 3.243252, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89388*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6705237089, + "lat": 48.6883851, + "lon": 3.0802463, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77486A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6707752918, + "lat": 48.6903138, + "lon": 3.0033122, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "phone": "+33 1 85 45 06 88", + "ref:EU:EVSE": "FR*S77*P77527A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6708619078, + "lat": 48.1229094, + "lon": -1.2130354, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6708729999, + "lat": 48.8932453, + "lon": 0.1776558, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Musée", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61071A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6708749191, + "lat": 45.1828796, + "lon": 0.7189056, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24322*006", + "ref:EU:EVSE": "FR*S24*PMB24*83", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6708749197, + "lat": 45.179813, + "lon": 0.7248019, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24322*002", + "ref:EU:EVSE": "FR*S24*PMB24*79", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6709448904, + "lat": 48.7020927, + "lon": 3.2446243, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "phone": "+33 1 85 45 06 88", + "ref:EU:EVSE": "FR*S77*P77032A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6709627085, + "lat": 48.6938528, + "lon": 3.3435714, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "phone": "+33 1 85 45 06 88", + "ref:EU:EVSE": "FR*S77*P77066A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6709907917, + "lat": 43.6956627, + "lon": -1.0520965, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "mapillary": "825015278407289", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*56", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6710296660, + "lat": 44.3487961, + "lon": 3.9497972, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30130*001", + "ref:EU:EVSE": "FR*S30*P30130*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6711994757, + "lat": 49.4893567, + "lon": 0.5675022, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6715285643, + "lat": 46.2581722, + "lon": 0.799671, + "tags": { + "amenity": "charging_station", + "amperage": "26", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "parking:fee": "no", + "ref": "B001", + "ref:EU:EVSE": "FR*S86*PSORE*B001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "voltage": "400" + } + }, + { + "type": "node", + "id": 6715880711, + "lat": 47.5844065, + "lon": 1.3334633, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-7", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6717998886, + "lat": 50.784353, + "lon": 1.9312213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Pays d'Opale", + "ref:EU:EVSE": "FR*H11*P62506*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6719001701, + "lat": 44.8955076, + "lon": 5.370433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26364*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6720970651, + "lat": 45.7708198, + "lon": 0.9575134, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:schuko": "2", + "socket:schuko:output": "22 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6721461697, + "lat": 48.9117393, + "lon": 1.8499823, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 6724756179, + "lat": 49.4521005, + "lon": 1.0361761, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76157*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6731910985, + "lat": 45.2151522, + "lon": 5.4174668, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "name": "Borne de recharge VAE Grand Séchoir", + "operator": "SMVIC" + } + }, + { + "type": "node", + "id": 6733298083, + "lat": 47.5173955, + "lon": -1.2938915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44144A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6734952232, + "lat": 42.5511998, + "lon": 8.7948876, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 6735162826, + "lat": 48.8562974, + "lon": 2.6268286, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Noisiel - Chocolaterie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "219", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6735424703, + "lat": 48.6496894, + "lon": 2.3195022, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "sodetrel" + } + }, + { + "type": "node", + "id": 6737214227, + "lat": 46.0636155, + "lon": 6.4116645, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity Bonneville", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737229804, + "lat": 45.8755808, + "lon": 6.069544, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Fontanelles", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737229805, + "lat": 45.8755239, + "lon": 6.0694674, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Fontanelles", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737229941, + "lat": 44.5151078, + "lon": 4.7808922, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Montelimar Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4036", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737229942, + "lat": 43.4234155, + "lon": 5.9935012, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Ionity Cambarette Nord", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity GmbH", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "start_date": "2019", + "wikidata": "Q42717773", + "wikipedia": "en:IONITY" + } + }, + { + "type": "node", + "id": 6737229943, + "lat": 43.4138578, + "lon": 6.4514838, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "charge": "0.79€/min", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Vidauban Sud", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4096", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737229946, + "lat": 43.5919107, + "lon": 7.0364392, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Bréguières Nord", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4032", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737245398, + "lat": 45.547676, + "lon": 6.1568858, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Val Gelon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6737245399, + "lat": 45.5485026, + "lon": 6.1578398, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Arclusaz", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 6738682153, + "lat": 43.830208, + "lon": 5.7834434, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking de Drouille", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref": "FR*S04*P04112*F", + "ref:EU:EVSE": "FR*EBN*PRAATACOPRW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6738682154, + "lat": 43.7866637, + "lon": 5.7651238, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Théatre SDE04", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref:EU:EVSE": "FR*EBN*PDBC1X2LWNF", + "ref:ruian:addr": "FR*S04*P04197*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6738682155, + "lat": 43.8767104, + "lon": 5.8424299, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Mairie SDE04", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "payment:website": "yes", + "ref": "FR*S04*P04245*A", + "ref:EU:EVSE": "FR*EBN*PHU7ZHXIDPR", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6740140965, + "lat": 43.5838493, + "lon": 3.8603948, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*004", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6740140966, + "lat": 43.6350065, + "lon": 3.8485428, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*003", + "ref:FR:REVEO": "FR-M34-E34172-003-1;FR-M34-E34172-003-1", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 6742292998, + "lat": 48.67547, + "lon": 2.3636602, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6743766586, + "lat": 47.3155865, + "lon": -3.189206, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6743785286, + "lat": 47.3155423, + "lon": -3.1892985, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6744820493, + "lat": 43.8627952, + "lon": 4.3768659, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*022", + "ref:EU:EVSE": "FR*S30*P30189*022", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6746919731, + "lat": 49.5807492, + "lon": 3.0006699, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6746919732, + "lat": 49.5807328, + "lon": 3.0006881, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6746920641, + "lat": 49.3876444, + "lon": 2.3990815, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Wenceslas Coutellier", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCLERMONTWENC", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6746920642, + "lat": 49.3876636, + "lon": 2.3990546, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Wenceslas Coutellier", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCLERMONTWENC", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6746925463, + "lat": 43.8000673, + "lon": 4.4249992, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30047*001", + "ref:EU:EVSE": "FR*S30*P30047*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6749311981, + "lat": 49.1216798, + "lon": -0.1015689, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET315", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6749658284, + "lat": 47.5294843, + "lon": -2.3051404, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Aire de Marzan", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56126*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6752580851, + "lat": 48.8009859, + "lon": -3.030633, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6753692444, + "lat": 47.1109342, + "lon": 5.5086545, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Mc Donald's" + } + }, + { + "type": "node", + "id": 6753692445, + "lat": 47.1118647, + "lon": 5.4962392, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault" + } + }, + { + "type": "node", + "id": 6753692446, + "lat": 47.0909834, + "lon": 5.4969503, + "tags": { + "amenity": "charging_station", + "operator": "Grand Dole", + "operator:type": "public" + } + }, + { + "type": "node", + "id": 6753692447, + "lat": 47.0634132, + "lon": 5.4480761, + "tags": { + "amenity": "charging_station", + "operator": "Grand Dole", + "operator:type": "public" + } + }, + { + "type": "node", + "id": 6753692448, + "lat": 47.1525737, + "lon": 5.7596266, + "tags": { + "amenity": "charging_station", + "operator": "Colruyt" + } + }, + { + "type": "node", + "id": 6753692449, + "lat": 46.9850795, + "lon": 5.5890866, + "tags": { + "amenity": "charging_station", + "operator": "Espace Grévy" + } + }, + { + "type": "node", + "id": 6753698785, + "lat": 46.9974492, + "lon": 5.7140145, + "tags": { + "amenity": "charging_station", + "operator": "Communauté de communes du Val d'Amour", + "operator:type": "public" + } + }, + { + "type": "node", + "id": 6753698792, + "lat": 46.9989593, + "lon": 5.8235881, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Château de Germigney" + } + }, + { + "type": "node", + "id": 6753698794, + "lat": 46.9400628, + "lon": 5.8779524, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Grand Hôtel des Bains" + } + }, + { + "type": "node", + "id": 6753698795, + "lat": 46.8464791, + "lon": 5.6989434, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault" + } + }, + { + "type": "node", + "id": 6753698804, + "lat": 46.8046816, + "lon": 5.6206468, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Domaine du Revermont" + } + }, + { + "type": "node", + "id": 6753698805, + "lat": 46.751007, + "lon": 5.9153176, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "covered": "yes", + "fee": "no", + "motorcar": "yes", + "operator": "Super U", + "socket:type3": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 6753698818, + "lat": 46.7500972, + "lon": 5.929475, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Kia" + } + }, + { + "type": "node", + "id": 6753698819, + "lat": 46.3934397, + "lon": 5.9679619, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "operator": "La Spatule" + } + }, + { + "type": "node", + "id": 6753698820, + "lat": 46.334224, + "lon": 5.8995951, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Le Pré Fillet" + } + }, + { + "type": "node", + "id": 6753698825, + "lat": 46.3825038, + "lon": 5.8620764, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 6753698828, + "lat": 46.6715834, + "lon": 5.5683853, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "manufacturer": "Schneider Electric", + "model": "EVlink Parking", + "motorcar": "yes", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "socket:type2": "2", + "socket:type2:output": "22", + "wikimedia_commons": "File:EVF2S22P44R sn=3N1950220002008 05.jpg" + } + }, + { + "type": "node", + "id": 6753698829, + "lat": 46.5219408, + "lon": 5.6099134, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "La Valouse" + } + }, + { + "type": "node", + "id": 6753698830, + "lat": 46.6683842, + "lon": 5.5754133, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "manufacturer": "Nissan", + "model": "EV Quick Charger", + "motorcar": "yes", + "operator": "Nissan", + "operator:wikidata": "Q20165", + "operator:wikipedia": "en:Nissan", + "socket:chademo": "1", + "socket:chademo:output": "50", + "wikimedia_commons": "File:NSQC442G-005226 05.jpg" + } + }, + { + "type": "node", + "id": 6753698832, + "lat": 46.6687601, + "lon": 5.5487153, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "New Motion", + "operator": "Mc Donald's", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3.7", + "wikimedia_commons": "File:IRVE NewMotion 09990308 et 08990568 02.jpg" + } + }, + { + "type": "node", + "id": 6753698833, + "lat": 46.7480209, + "lon": 5.4644886, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl" + } + }, + { + "type": "node", + "id": 6753698838, + "lat": 46.6698082, + "lon": 5.5723723, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "model": "EVlink City", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3.7", + "wikimedia_commons": "File:IRVE EVC1S22P4E4ERFM SN=D41929100000001 02.jpg" + } + }, + { + "type": "node", + "id": 6754139426, + "lat": 48.6454814, + "lon": 1.8187152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Rambouillet Territoires Charging Station", + "operator": "Rambouillet Territoires" + } + }, + { + "type": "node", + "id": 6754307697, + "lat": 48.5004262, + "lon": -2.759209, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6755443557, + "lat": 47.3473087, + "lon": -3.1568227, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6757170549, + "lat": 44.7569614, + "lon": 0.4087784, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24534*001", + "ref:EU:EVSE": "FR*S24*PMB24*123", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6759260738, + "lat": 47.5561453, + "lon": 0.5953224, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Modulo Charging Station", + "socket:chademo": "1", + "socket:type1_combo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 6760130905, + "lat": 45.568353, + "lon": 2.3300401, + "tags": { + "amenity": "charging_station", + "name": "Renault Charging Station", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault" + } + }, + { + "type": "node", + "id": 6762071643, + "lat": 48.6454889, + "lon": 1.8188276, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6762106797, + "lat": 49.2262642, + "lon": 2.881335, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6764449658, + "lat": 48.7131341, + "lon": 2.192821, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "fixme": "vérifier le nom et la capacité", + "name": "Thomas Gobert - Ouest", + "operator": "park'in saclay", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 6764487345, + "lat": 48.4378272, + "lon": -1.0587152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53181*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6764488296, + "lat": 47.424473, + "lon": -0.6092081, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Chevriere", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49035*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6764599599, + "lat": 44.4573108, + "lon": 6.0372222, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Tesla", + "socket:tesla_supercharger": "3" + } + }, + { + "type": "node", + "id": 6764735874, + "lat": 43.5113588, + "lon": 5.4489677, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "name": "Recharge AixPress", + "operator": "RDT13" + } + }, + { + "type": "node", + "id": 6764735875, + "lat": 43.5113539, + "lon": 5.4488841, + "tags": { + "access": "private", + "amenity": "charging_station", + "operator": "RDT13" + } + }, + { + "type": "node", + "id": 6766204586, + "lat": 46.551186, + "lon": 0.3007355, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan" + } + }, + { + "type": "node", + "id": 6772144646, + "lat": 47.4445871, + "lon": 0.499092, + "tags": { + "amenity": "charging_station", + "brand": "VIRTA", + "capacity": "2", + "fee": "yes", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "power": "18", + "ref": "FR*S37*E5515", + "source": "SIEIL37 - data.gouv.fr - 2019-09-20", + "website": "https://www.virtaev.fr" + } + }, + { + "type": "node", + "id": 6774050083, + "lat": 49.1994046, + "lon": -0.471715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET303", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6774105346, + "lat": 44.3933901, + "lon": 4.2363233, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07053*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6774176025, + "lat": 49.2054929, + "lon": -0.476976, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET247", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6774847044, + "lat": 45.5589015, + "lon": -0.9537828, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6774992589, + "lat": 47.2218657, + "lon": -1.6311697, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6776239568, + "lat": 45.4158705, + "lon": 0.9190808, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24551*002", + "ref:EU:EVSE": "FR*S24*PMB24*132", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776245837, + "lat": 45.6243151, + "lon": 0.687937, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24328*001", + "ref:EU:EVSE": "FR*S24*PMB24*86", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776259001, + "lat": 45.5915502, + "lon": 0.669592, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24398*001", + "ref:EU:EVSE": "FR*S24*PMB24*105", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776273734, + "lat": 45.4007566, + "lon": 1.2173527, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24320*001", + "ref:EU:EVSE": "FR*S24*PMB24*77", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776278688, + "lat": 45.3922359, + "lon": 1.1403646, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24227*001", + "ref:EU:EVSE": "FR*S24*PMB24*50", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776281289, + "lat": 45.5396579, + "lon": 0.9760317, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24133*001", + "ref:EU:EVSE": "FR*S24*PMB24*43", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776281921, + "lat": 45.4928701, + "lon": 0.7488205, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24479*001", + "ref:EU:EVSE": "FR*S24*PMB24*113", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776294644, + "lat": 45.3367274, + "lon": 1.0509975, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24164*001", + "ref:EU:EVSE": "FR*S24*PMB24*35", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776302417, + "lat": 45.4516608, + "lon": 0.4511697, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24253*001", + "ref:EU:EVSE": "FR*S24*PMB24*58", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776314996, + "lat": 45.2751521, + "lon": 0.9195169, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24527*001", + "ref:EU:EVSE": "FR*S24*PMB24*122", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776315011, + "lat": 45.305763, + "lon": 0.8727915, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24540*001", + "ref:EU:EVSE": "FR*S24*PMB24*125", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776327689, + "lat": 45.2358766, + "lon": 0.8736726, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24521*001", + "ref:EU:EVSE": "FR*S24*PMB24*121", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776351604, + "lat": 45.2045831, + "lon": 0.743222, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Aquacap", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24098*002", + "ref:EU:EVSE": "FR*S24*PMB24*25", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776353580, + "lat": 45.1968315, + "lon": 0.7384484, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24557*001", + "ref:EU:EVSE": "FR*S24*PMB24*136", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776371333, + "lat": 45.1952655, + "lon": 0.7799354, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24557*002", + "ref:EU:EVSE": "FR*S24*PMB24*137", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776386445, + "lat": 45.1800801, + "lon": 0.7119669, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24322*005", + "ref:EU:EVSE": "FR*S24*PMB24*82", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776386674, + "lat": 45.1818341, + "lon": 0.7583302, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24053*001", + "ref:EU:EVSE": "FR*S24*PMB24*14", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776387561, + "lat": 45.182501, + "lon": 0.7630724, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24053*002", + "ref:EU:EVSE": "FR*S24*PMB24*13", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776449120, + "lat": 45.1877437, + "lon": 0.7081689, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24322*004", + "ref:EU:EVSE": "FR*S24*PMB24*80", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776461672, + "lat": 45.3465873, + "lon": 0.3650607, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24573*001", + "ref:EU:EVSE": "FR*S24*PMB24*140", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6776464920, + "lat": 45.2053357, + "lon": 0.6660569, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24102*001", + "ref:EU:EVSE": "FR*S24*PMB24*27", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777043989, + "lat": 46.6719064, + "lon": 5.5580265, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "manufacturer": "Sobem-Scame", + "model": "Walbox metal", + "motorcar": "yes", + "operator": "Ville de Lons-le-Saunier", + "socket:type2": "2", + "wikimedia_commons": "File:Borne de recharge Sobem-Scame, Hôtel de ville, Lons-le-Saunier 05.jpg" + } + }, + { + "type": "node", + "id": 6777043990, + "lat": 46.6718948, + "lon": 5.5580955, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "manufacturer": "Sobem-Scame", + "model": "Walbox metal", + "motorcar": "yes", + "operator": "Ville de Lons-le-Saunier", + "socket:type2": "2", + "wikimedia_commons": "File:Borne de recharge Sobem-Scame, Hôtel de ville, Lons-le-Saunier 01.jpg" + } + }, + { + "type": "node", + "id": 6777561666, + "lat": 45.4340079, + "lon": 4.3946533, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6777577840, + "lat": 45.0333368, + "lon": 0.3527386, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24299*001", + "ref:EU:EVSE": "FR*S24*PMB24*70", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777584260, + "lat": 45.2017204, + "lon": 0.3924454, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24504*001", + "ref:EU:EVSE": "FR*S24*PMB24*114", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777585057, + "lat": 45.2490928, + "lon": 0.3378866, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24352*003", + "ref:EU:EVSE": "FR*S24*PMB24*93", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777585058, + "lat": 45.2482803, + "lon": 0.3390205, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24352*002", + "ref:EU:EVSE": "FR*S24*PMB24*92", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777596283, + "lat": 44.8804241, + "lon": 1.2174084, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24520*002", + "ref:EU:EVSE": "FR*S24*PMB24*117", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777602515, + "lat": 45.0090104, + "lon": 0.1657283, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24294*002", + "ref:EU:EVSE": "FR*S24*PMB24*68", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777602727, + "lat": 45.0264007, + "lon": 0.7184619, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24571*001", + "ref:EU:EVSE": "FR*S24*PMB24*139", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777604345, + "lat": 45.0553957, + "lon": 1.1513684, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24290*003", + "ref:EU:EVSE": "FR*S24*PMB24*65", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777626096, + "lat": 45.1298672, + "lon": 1.2988396, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24547*002", + "ref:EU:EVSE": "FR*S24*PMB24*129", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777640942, + "lat": 45.0609263, + "lon": 1.1655533, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24290*001", + "ref:EU:EVSE": "FR*S24*PMB24*66", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777643630, + "lat": 44.7985957, + "lon": 1.2039578, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24091*001", + "ref:EU:EVSE": "FR*S24*PMB24*23", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777644388, + "lat": 44.8252526, + "lon": 1.1836068, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24355*001", + "ref:EU:EVSE": "FR*S24*PMB24*47", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777646035, + "lat": 45.011413, + "lon": 1.089986, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24443*001", + "ref:EU:EVSE": "FR*S24*PMB24*111", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777647369, + "lat": 44.9663095, + "lon": 1.1500494, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24544*001", + "ref:EU:EVSE": "FR*S24*PMB24*127", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777653844, + "lat": 44.8824838, + "lon": 1.4331459, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24089*001", + "ref:EU:EVSE": "FR*S24*PMB24*22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777657627, + "lat": 44.8925004, + "lon": 1.212793, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24520*001", + "ref:EU:EVSE": "FR*S24*PMB24*120", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777657628, + "lat": 44.8926757, + "lon": 1.2173923, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24520*003", + "ref:EU:EVSE": "FR*S24*PMB24*119", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777664279, + "lat": 44.8131339, + "lon": 1.1522683, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24086*001", + "ref:EU:EVSE": "FR*S24*PMB24*21", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777669639, + "lat": 44.9348637, + "lon": 1.0182665, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24172*001", + "ref:EU:EVSE": "FR*S24*PMB24*56", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777669814, + "lat": 44.8394196, + "lon": 1.1501171, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24040*001", + "ref:EU:EVSE": "FR*S24*PMB24*11", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777686261, + "lat": 44.879652, + "lon": 0.9472583, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24015*001", + "ref:EU:EVSE": "FR*S24*PMB24*3", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777686264, + "lat": 44.9357091, + "lon": 0.5634503, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24077*001", + "ref:EU:EVSE": "FR*S24*PMB24*19", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777687594, + "lat": 44.7774966, + "lon": 1.0064956, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24035*001", + "ref:EU:EVSE": "FR*S24*PMB24*6", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777687831, + "lat": 44.93871, + "lon": 1.0111123, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24172*002", + "ref:EU:EVSE": "FR*S24*PMB24*55", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777694598, + "lat": 44.8650964, + "lon": 1.0425626, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24396*002", + "ref:EU:EVSE": "FR*S24*PMB24*103", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777694599, + "lat": 44.8683904, + "lon": 1.0441417, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24396*001", + "ref:EU:EVSE": "FR*S24*PMB24*104", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777709363, + "lat": 44.9165533, + "lon": 0.9269325, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24067*001", + "ref:EU:EVSE": "FR*S24*PMB24*52", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777712413, + "lat": 44.8421288, + "lon": 0.6522046, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24382*001", + "ref:EU:EVSE": "FR*S24*PMB24*101", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777720478, + "lat": 44.8500294, + "lon": 0.4874613, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24037*002", + "ref:EU:EVSE": "FR*S24*PMB24*8", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777720479, + "lat": 44.8496952, + "lon": 0.4854248, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24037*001", + "ref:EU:EVSE": "FR*S24*PMB24*10", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777721677, + "lat": 44.8553906, + "lon": 0.5681301, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24145*001", + "ref:EU:EVSE": "FR*S24*PMB24*32", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777721678, + "lat": 44.857061, + "lon": 0.4881225, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24037*004", + "ref:EU:EVSE": "FR*S24*PMB24*7", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777723829, + "lat": 44.7678798, + "lon": 0.7686775, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24028*001", + "ref:EU:EVSE": "FR*S24*PMB24*5", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777726734, + "lat": 44.6291733, + "lon": 1.0802121, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24585*001", + "ref:EU:EVSE": "FR*S24*PMB24*145", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777728025, + "lat": 44.6307562, + "lon": 0.8705934, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24043*001", + "ref:EU:EVSE": "FR*S24*PMB24*12", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6777741691, + "lat": 44.8531113, + "lon": 0.4824845, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24037*003", + "ref:EU:EVSE": "FR*S24*PMB24*9", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6778189213, + "lat": 44.8422027, + "lon": 0.3825048, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24225*001", + "ref:EU:EVSE": "FR*S24*PMB24*49", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6778205960, + "lat": 44.854717, + "lon": 0.4004055, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24340*001", + "ref:EU:EVSE": "FR*S24*PMB24*89", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6778216736, + "lat": 44.8671813, + "lon": 0.3756467, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24222*001", + "ref:EU:EVSE": "FR*S24*PMB24*44", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6778227351, + "lat": 45.150935, + "lon": 0.0110748, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24354*001", + "ref:EU:EVSE": "FR*S24*PMB24*46", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6779614684, + "lat": 43.332649, + "lon": 2.3810553, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11194*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780397746, + "lat": 44.259328, + "lon": 4.5962173, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30290*001", + "ref:EU:EVSE": "FR*S30*P30290*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780420254, + "lat": 44.005681, + "lon": 4.5786394, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30340*001", + "ref:EU:EVSE": "FR*S30*P30340*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780423172, + "lat": 44.1502279, + "lon": 4.3625499, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30151*001", + "ref:EU:EVSE": "FR*S30*P30151*001", + "socket:chademo": "1", + "socket:chademo:output": "36", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:type2_combo:output": "36", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6780427754, + "lat": 44.1244538, + "lon": 4.6997888, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30084*001", + "ref:EU:EVSE": "FR*S30*P30084*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780427755, + "lat": 44.1272499, + "lon": 4.7012828, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30084*002", + "ref:EU:EVSE": "FR*S30*P30084*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780436555, + "lat": 44.0529896, + "lon": 4.6981473, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30278*001", + "ref:EU:EVSE": "FR*S30*P30278*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780439311, + "lat": 44.3068992, + "lon": 4.3478635, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30029*001", + "ref:EU:EVSE": "FR*S30*P30029*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780440444, + "lat": 44.1998579, + "lon": 4.6476325, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30342*001", + "ref:EU:EVSE": "FR*S30*P30342*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780453765, + "lat": 44.2007747, + "lon": 4.5463745, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30287*001", + "ref:EU:EVSE": "FR*S30*P30287*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780461769, + "lat": 44.0816466, + "lon": 4.6140707, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30355*001", + "ref:EU:EVSE": "FR*S30*P30355*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780462149, + "lat": 44.1605367, + "lon": 4.6224292, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30028*001", + "ref:EU:EVSE": "FR*S30*P30028*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780475268, + "lat": 43.9743806, + "lon": 4.6959074, + "tags": { + "addr:city": "Rochefort-du-Gard", + "addr:postcode": "30650", + "addr:street": "Route d'Avignon", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "fixme": "ETALAB donne les infos suivantes, qui divergent des tags; A contrôler sur place :\nsocket:type2 = 6 (vs 2)\nsocket:typee = 6 (vs 2)", + "motorcar": "yes", + "name": "Route D'Avignon", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30217*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780480349, + "lat": 44.0137442, + "lon": 4.6979635, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SME Gard Charging Station", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30326*001", + "ref:EU:EVSE": "FR*S30*P30326*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780487172, + "lat": 44.0645118, + "lon": 4.7221731, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30254*001", + "ref:EU:EVSE": "FR*S30*P30254*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780488750, + "lat": 44.0026839, + "lon": 4.7743072, + "tags": { + "addr:city": "Pujaut", + "addr:postcode": "30131", + "addr:street": "Place du Marché", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Informations tarifaires disponibles sur le site de RÉVÉO : https://www.reveocharge.com/fr/comment-ca-marche/tarifs-de-recharge/", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30209*001", + "ref:EU:EVSE": "FR*S30*P30209*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780494351, + "lat": 44.1140675, + "lon": 4.524031, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30076*001", + "ref:EU:EVSE": "FR*S30*P30076*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780496280, + "lat": 44.0747806, + "lon": 4.7536683, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30178*001", + "ref:EU:EVSE": "FR*S30*P30178*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780499828, + "lat": 44.1454145, + "lon": 4.6767352, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30081*001", + "ref:EU:EVSE": "FR*S30*P30081*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780515746, + "lat": 44.077778, + "lon": 4.58507, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30127*001", + "ref:EU:EVSE": "FR*S30*P30127*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780515879, + "lat": 44.2096495, + "lon": 4.0300687, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30132*001", + "ref:EU:EVSE": "FR*S30*P30132*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780520053, + "lat": 44.0279923, + "lon": 4.3807796, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30174*001", + "ref:EU:EVSE": "FR*S30*P30174*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780530097, + "lat": 44.1862297, + "lon": 4.2283724, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30008*001", + "ref:EU:EVSE": "FR*S30*P30008*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780530957, + "lat": 43.9426675, + "lon": 4.6797247, + "tags": { + "addr:city": "Saze", + "addr:postcode": "30650", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "description": "Informations tarifaires disponibles sur le site de RÉVÉO : https://www.reveocharge.com/fr/comment-ca-marche/tarifs-de-recharge/", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Salle Polyvalente", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30315*001", + "ref:EU:EVSE": "FR*S30*P30315*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780531637, + "lat": 44.2601055, + "lon": 4.1951989, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30227*001", + "ref:EU:EVSE": "FR*S30*P30227*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780534951, + "lat": 43.8052268, + "lon": 4.6422561, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30032*001", + "ref:EU:EVSE": "FR*S30*P30032*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780542862, + "lat": 44.0000488, + "lon": 4.3743537, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30014*001", + "ref:EU:EVSE": "FR*S30*P30014*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780544900, + "lat": 44.1752045, + "lon": 4.1044001, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30274*001", + "ref:EU:EVSE": "FR*S30*P30274*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780547889, + "lat": 44.2068781, + "lon": 4.0343689, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30307*001", + "ref:EU:EVSE": "FR*S30*P30307*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780547890, + "lat": 44.3472525, + "lon": 4.0125833, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30022*001", + "ref:EU:EVSE": "FR*S30*P30022*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780550162, + "lat": 43.9696681, + "lon": 4.553367, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30073*001", + "ref:EU:EVSE": "FR*S30*P30073*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780552325, + "lat": 43.8889862, + "lon": 4.6808054, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Avenue Jean Moulin", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30012*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780556633, + "lat": 43.9932853, + "lon": 4.448677, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30286*001", + "ref:EU:EVSE": "FR*S30*P30286*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780560617, + "lat": 43.8765845, + "lon": 4.466055, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30257*001", + "ref:EU:EVSE": "FR*S30*P30257*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780562415, + "lat": 43.770783, + "lon": 4.42501, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30125*001", + "ref:EU:EVSE": "FR*S30*P30125*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780571008, + "lat": 43.8142127, + "lon": 4.352056, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*005", + "ref:EU:EVSE": "FR*S30*P30189*005", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780574098, + "lat": 43.8832714, + "lon": 4.563035, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Mairie", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30166*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780579256, + "lat": 43.8211912, + "lon": 4.363307, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*002", + "ref:EU:EVSE": "FR*S30*P30189*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780581826, + "lat": 43.8670408, + "lon": 4.4425703, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30156*002", + "ref:EU:EVSE": "FR*S30*P30156*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780589658, + "lat": 43.8107686, + "lon": 4.3375142, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*016", + "ref:EU:EVSE": "FR*S30*P30189*016", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780590477, + "lat": 43.8153818, + "lon": 4.3475161, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*006", + "ref:EU:EVSE": "FR*S30*P30189*006", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780593532, + "lat": 43.83423, + "lon": 4.394504, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*018", + "ref:EU:EVSE": "FR*S30*P30189*018", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780597226, + "lat": 43.9642912, + "lon": 4.3669675, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30041*001", + "ref:EU:EVSE": "FR*S30*P30041*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780600290, + "lat": 43.9671717, + "lon": 4.2774864, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30241*001", + "ref:EU:EVSE": "FR*S30*P30241*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780603154, + "lat": 44.0032762, + "lon": 4.2045195, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30100*001", + "ref:EU:EVSE": "FR*S30*P30100*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780605710, + "lat": 43.8379547, + "lon": 4.344667, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*019", + "ref:EU:EVSE": "FR*S30*P30189*019", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780606909, + "lat": 43.8324231, + "lon": 4.3525932, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*011", + "ref:EU:EVSE": "FR*S30*P30189*011", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780615033, + "lat": 44.0304756, + "lon": 4.2338958, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30285*001", + "ref:EU:EVSE": "FR*S30*P30285*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780745967, + "lat": 44.0446426, + "lon": 4.2991935, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30111*001", + "ref:EU:EVSE": "FR*S30*P30111*001", + "socket:chademo": "1", + "socket:chademo:output": "36", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:type2_combo:output": "36", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 6780759414, + "lat": 43.8270561, + "lon": 4.3197251, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*020", + "ref:EU:EVSE": "FR*S30*P30189*020", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780765419, + "lat": 43.8466727, + "lon": 4.3725519, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*010", + "ref:EU:EVSE": "FR*S30*P30189*010", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780766271, + "lat": 43.7531666, + "lon": 4.1475501, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30019*001", + "ref:EU:EVSE": "FR*S30*P30019*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780768428, + "lat": 43.8233833, + "lon": 4.322473, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30189*021", + "ref:EU:EVSE": "FR*S30*P30189*021", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780768448, + "lat": 43.6750373, + "lon": 4.4300839, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30258*001", + "ref:EU:EVSE": "FR*S30*P30258*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780774198, + "lat": 43.5211266, + "lon": 4.1279503, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30133005", + "socket:chademo": "2", + "socket:chademo:output": "36", + "socket:type2": "2", + "socket:type2:output": "36", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6780779225, + "lat": 43.6910238, + "lon": 4.6115609, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30117*002", + "ref:EU:EVSE": "FR*S30*P30117*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780779226, + "lat": 43.6910844, + "lon": 4.6115099, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30117*001", + "ref:EU:EVSE": "FR*S30*P30117*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780779859, + "lat": 43.7874202, + "lon": 4.3118678, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30169*001", + "ref:EU:EVSE": "FR*S30*P30169*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780787371, + "lat": 44.0506448, + "lon": 4.1383702, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30348*001", + "ref:EU:EVSE": "FR*S30*P30348*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780788023, + "lat": 43.8074326, + "lon": 4.2318928, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30249*001", + "ref:EU:EVSE": "FR*S30*P30249*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780803651, + "lat": 43.716507, + "lon": 4.3248951, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30033*001", + "ref:EU:EVSE": "FR*S30*P30033*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780803826, + "lat": 43.7291333, + "lon": 4.3486031, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30128*001", + "ref:EU:EVSE": "FR*S30*P30128*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780815125, + "lat": 43.526706, + "lon": 4.1411111, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30133004", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6780815126, + "lat": 43.7421372, + "lon": 4.2234848, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30344*002", + "ref:EU:EVSE": "FR*S30*P30344*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780815201, + "lat": 43.540035, + "lon": 4.1359435, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30133003", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6780818994, + "lat": 43.739714, + "lon": 4.2171923, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30344*001", + "ref:EU:EVSE": "FR*S30*P30344*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780819992, + "lat": 43.5353306, + "lon": 4.138796, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30133001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6780825683, + "lat": 44.1120431, + "lon": 4.0799142, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30007*006", + "ref:EU:EVSE": "FR*S30*P30007*006", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780826967, + "lat": 43.631799, + "lon": 4.1935902, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30276*001", + "ref:EU:EVSE": "FR*S30*P30276*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780828936, + "lat": 43.7379781, + "lon": 4.2013901, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30185*001", + "ref:EU:EVSE": "FR*S30*P30185*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780828948, + "lat": 43.9637415, + "lon": 3.8541942, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30263*001", + "ref:EU:EVSE": "FR*S30*P30263*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780830832, + "lat": 43.7322314, + "lon": 4.2184261, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30083*001", + "ref:EU:EVSE": "FR*S30*P30083*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780831998, + "lat": 43.7228406, + "lon": 4.1739799, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30123*001", + "ref:EU:EVSE": "FR*S30*P30123*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780841699, + "lat": 43.7814076, + "lon": 4.0868785, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30321*001", + "ref:EU:EVSE": "FR*S30*P30321*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780844430, + "lat": 43.9884615, + "lon": 4.106411, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30146*001", + "ref:EU:EVSE": "FR*S30*P30146*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780846577, + "lat": 44.0429199, + "lon": 3.8599187, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30140*001", + "ref:EU:EVSE": "FR*S30*P30140*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780850037, + "lat": 44.1180926, + "lon": 3.7633947, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30310*001", + "ref:EU:EVSE": "FR*S30*P30310*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780851205, + "lat": 44.0832164, + "lon": 4.0780695, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30243*001", + "ref:EU:EVSE": "FR*S30*P30243*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780852936, + "lat": 44.1710448, + "lon": 4.1559152, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30305*001", + "ref:EU:EVSE": "FR*S30*P30305*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780855763, + "lat": 44.0525679, + "lon": 3.9862675, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30010*001", + "ref:EU:EVSE": "FR*S30*P30010*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780856076, + "lat": 44.0171569, + "lon": 4.0515317, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30147*001", + "ref:EU:EVSE": "FR*S30*P30147*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780857390, + "lat": 44.0492806, + "lon": 4.0201022, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30042*001", + "ref:EU:EVSE": "FR*S30*P30042*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780858256, + "lat": 44.0805584, + "lon": 3.6361735, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30339*001", + "ref:EU:EVSE": "FR*S30*P30339*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780863178, + "lat": 44.0732472, + "lon": 4.0529955, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30027*001", + "ref:EU:EVSE": "FR*S30*P30027*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780868404, + "lat": 44.1479069, + "lon": 4.0977555, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30007*007", + "ref:EU:EVSE": "FR*S30*P30007*007", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780868652, + "lat": 44.1587318, + "lon": 4.1169508, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30294*001", + "ref:EU:EVSE": "FR*S30*P30294*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780869470, + "lat": 44.1284051, + "lon": 4.0770268, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30007*003", + "ref:EU:EVSE": "FR*S30*P30007*003", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780890269, + "lat": 45.5362629, + "lon": 2.3005058, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "name": "McDonald's Charging Station", + "operator": "McDonald's" + } + }, + { + "type": "node", + "id": 6780891028, + "lat": 44.1614449, + "lon": 4.0833937, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30284*001", + "ref:EU:EVSE": "FR*S30*P30284*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6780893473, + "lat": 44.1335332, + "lon": 4.0902199, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30007*002", + "ref:EU:EVSE": "FR*S30*P30007*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6782188886, + "lat": 43.3620184, + "lon": 2.1613052, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11367*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6783170915, + "lat": 47.2916437, + "lon": 0.0209763, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49002*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6783293374, + "lat": 48.6980536, + "lon": 6.1424011, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0,5 € TTC / 30 min de charge", + "fee": "yes", + "motorcar": "yes", + "official_name": "MGN_Piscine A Nakache", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "source": "survey" + } + }, + { + "type": "node", + "id": 6786083954, + "lat": 47.5125437, + "lon": 1.4559186, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41067-23", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6788631303, + "lat": 48.476563, + "lon": 3.1395391, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77159A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6788869343, + "lat": 45.4546625, + "lon": 4.3913058, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 6789816355, + "lat": 44.2366165, + "lon": 1.7733971, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6789877378, + "lat": 46.8802755, + "lon": -2.1195674, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85012*002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6792638443, + "lat": 48.6298133, + "lon": 1.0289732, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*SAUC1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6795680427, + "lat": 43.5441774, + "lon": 6.9497491, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 6796434566, + "lat": 43.1858398, + "lon": 2.9999168, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262009", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type3": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 6797149325, + "lat": 49.5191252, + "lon": 0.2796277, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6798435086, + "lat": 46.598971, + "lon": 0.3227854, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "network": "Corri-Door", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6800195912, + "lat": 46.0670554, + "lon": 3.4650265, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "eborn", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "source": "survey", + "survey:date": "2020-12-20" + } + }, + { + "type": "node", + "id": 6801335687, + "lat": 46.9418964, + "lon": -2.1766268, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85011*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6802823544, + "lat": 46.3410593, + "lon": -0.413672, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "authentication:debit_card": "no", + "authentication:membership_card": "no", + "authentication:money_card": "no", + "authentication:nfc": "yes", + "authentication:none": "yes", + "authentication:phone_call": "no", + "authentication:short_message": "no", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "description": "https://my.ze-watt.com/bornes/ZW00438/", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge - Safran Niort", + "network": "Ze-Watt", + "operator": "Ze-watt", + "parking:fee": "no", + "scooter": "yes", + "socket:type2": "2", + "socket:type2:output": "7KW", + "socket:typee": "2", + "socket:typee:output": "7KW", + "start_date": "2019", + "truck": "no" + } + }, + { + "type": "node", + "id": 6802823547, + "lat": 46.3409052, + "lon": -0.413291, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "authentication:debit_card": "no", + "authentication:membership_card": "no", + "authentication:money_card": "no", + "authentication:nfc": "yes", + "authentication:none": "yes", + "authentication:phone_call": "no", + "authentication:short_message": "no", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "description": "https://my.ze-watt.com/bornes/ZW00437/", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge - Safran Niort", + "network": "Ze-Watt", + "operator": "Ze-watt", + "parking:fee": "no", + "scooter": "yes", + "socket:type2": "2", + "socket:type2:output": "7KW", + "socket:typee": "2", + "socket:typee:output": "7KW", + "start_date": "2019", + "truck": "no" + } + }, + { + "type": "node", + "id": 6805394358, + "lat": 44.2661525, + "lon": 1.856125, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE82" + } + }, + { + "type": "node", + "id": 6805526672, + "lat": 45.4487953, + "lon": 4.4446167, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "E-Totem" + } + }, + { + "type": "node", + "id": 6807134845, + "lat": 44.3127551, + "lon": 5.6941648, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05097*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://www.sisteron-buech.fr/fr/commerce-service/eborn-borne-recharge-acceleree-vehicule-electrique" + } + }, + { + "type": "node", + "id": 6812202471, + "lat": 43.6467536, + "lon": 7.1198131, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "6", + "socket:type2": "6", + "socket:type2:output": "3.6 kW", + "socket:typee": "6", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 6812202472, + "lat": 43.6460549, + "lon": 7.1212947, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "6", + "level": "-1", + "socket:type2": "6", + "socket:type2:output": "3.6 kW", + "socket:typee": "6", + "socket:typee:output": "2.9 kW" + } + }, + { + "type": "node", + "id": 6812202473, + "lat": 43.6462093, + "lon": 7.1217319, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "6", + "socket:type2": "6", + "socket:type2:output": "3.6 kW", + "socket:typee": "6", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 6814429558, + "lat": 42.940344, + "lon": 1.8548791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09160*001", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6814441020, + "lat": 44.1617854, + "lon": 1.5337641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE" + } + }, + { + "type": "node", + "id": 6815436247, + "lat": 43.743623, + "lon": 7.3191878, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6815963674, + "lat": 44.245126, + "lon": 3.3539376, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48074*001", + "ref:EU:EVSE": "FR*S48*P48074*001", + "socket:type2": "1", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6817271763, + "lat": 48.664307, + "lon": 2.8415322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77107A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6819506618, + "lat": 42.9737771, + "lon": 0.667531, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6820161236, + "lat": 44.7744173, + "lon": -0.5637869, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "description": "Inside the Parc-Relais building. Suitable for leaving your car charging while you take the tram into Bordeaux.", + "fixme": "Needs a closer inspection for more details than just walking past it.", + "motorcar": "yes", + "operator": "TBM" + } + }, + { + "type": "node", + "id": 6830510457, + "lat": 48.837587, + "lon": 2.5929406, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Galilée - Bois de l'Étang", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "205", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830510458, + "lat": 48.8253198, + "lon": 2.6258906, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pariest Courcerin", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "208" + } + }, + { + "type": "node", + "id": 6830510459, + "lat": 48.8263835, + "lon": 2.6319899, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6830510460, + "lat": 48.8214723, + "lon": 2.6445846, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parc de Beaubourg", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "230", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830510461, + "lat": 48.8270496, + "lon": 2.6483464, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "279821990460361", + "motorcar": "yes", + "name": "Lions de Beaubourg", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "229", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-01-24" + } + }, + { + "type": "node", + "id": 6830510462, + "lat": 48.8116089, + "lon": 2.621909, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Émerainville - Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "228", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830526296, + "lat": 48.8442704, + "lon": 2.62269, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "899605460634820", + "motorcar": "yes", + "name": "Noisiel - Ferme du Buisson", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "217", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830526297, + "lat": 48.8505384, + "lon": 2.6226154, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Noisiel Mare Blanche", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "218", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830526298, + "lat": 48.8554982, + "lon": 2.5912593, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "CSTB", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "207", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830615875, + "lat": 48.8395113, + "lon": 2.6555719, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "471535577252784", + "motorcar": "yes", + "name": "Torcy RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "211", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6830650240, + "lat": 46.8376293, + "lon": -0.4943236, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79049P0021A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6831441053, + "lat": 44.3795539, + "lon": 2.8248972, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12120*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6834287809, + "lat": 44.8302694, + "lon": -0.6045956, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Freshmile", + "source": "https://www.bornes-recharge.net/" + } + }, + { + "type": "node", + "id": 6837024679, + "lat": 43.3668824, + "lon": 1.784023, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge pour voiture", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "payment:credit_cards": "no", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S31*PEFDJJV", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6838828283, + "lat": 47.1040285, + "lon": -1.8670723, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44164A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6841903209, + "lat": 46.8551086, + "lon": 6.334905, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02544251", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6846270186, + "lat": 48.7031347, + "lon": 2.191422, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Communauté d'agglomération Paris-Saclay", + "survey:date": "2019-10-03" + } + }, + { + "type": "node", + "id": 6848326419, + "lat": 47.863289, + "lon": -3.905348, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "note": "Only small capacity batteries such as RV secondaries." + } + }, + { + "type": "node", + "id": 6848587043, + "lat": 49.4437156, + "lon": 1.0996497, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*010" + } + }, + { + "type": "node", + "id": 6848587044, + "lat": 49.4437288, + "lon": 1.0995568, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*010" + } + }, + { + "type": "node", + "id": 6848587045, + "lat": 49.4437396, + "lon": 1.0994754, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*010" + } + }, + { + "type": "node", + "id": 6848587046, + "lat": 49.4437528, + "lon": 1.0993901, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*010" + } + }, + { + "type": "node", + "id": 6848719184, + "lat": 45.1440104, + "lon": 5.8297448, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38422*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6851317247, + "lat": 48.4355921, + "lon": -4.4001624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "0.30 EUR per KWh", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Brest Métropole", + "ref:EU:EVSE": "FR*M29*P29075*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6853297814, + "lat": 48.6863073, + "lon": -3.9865684, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29FI04", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6853986685, + "lat": 49.7658016, + "lon": 4.717374, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 148 - Charleville-Mezieres - Voltaire", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6853986707, + "lat": 49.7616651, + "lon": 4.7107409, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 121 - Charleville-Mezieres - Monge", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6854843909, + "lat": 47.6718402, + "lon": -0.2408636, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49127*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6855836992, + "lat": 48.698582, + "lon": 2.187464, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6856919398, + "lat": 43.5046843, + "lon": -1.4455175, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6856941168, + "lat": 50.6820024, + "lon": 2.8883845, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6857327276, + "lat": 47.6157467, + "lon": -0.4679047, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49347*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6858305965, + "lat": 42.6633824, + "lon": 2.8347181, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Station de recharge électrique", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66213*001", + "ref:EU:EVSE": "FR*S66*P66213*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6860995630, + "lat": 49.2709077, + "lon": -0.7066524, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*E14047*2", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6862427485, + "lat": 46.5340228, + "lon": 0.2668449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B040", + "ref:EU:EVSE": "FR*S86*PSORE*B040", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6867301742, + "lat": 48.7923235, + "lon": 2.5579188, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6869605489, + "lat": 46.3155748, + "lon": -0.4711613, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-05", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79191P0185A", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 6874521433, + "lat": 48.1391284, + "lon": -1.6854393, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6874966471, + "lat": 46.3214608, + "lon": -0.4609087, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79191P0079A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6875748784, + "lat": 49.7328569, + "lon": 4.7552374, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 078 - Villers Semeuse - ZC Cora", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 6879121943, + "lat": 46.6510864, + "lon": 1.9757024, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de Maitres Sonneurs", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 6884773587, + "lat": 46.5715068, + "lon": 0.370762, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B137", + "ref:EU:EVSE": "FR*S86*PSORE*B137", + "socket:chademo": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6894776841, + "lat": 45.2552785, + "lon": 6.3963254, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYME05 - Hautes-Alpes", + "ref:EU:EVSE": "FR*EBN*PP0A4HH2T9K", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6894784383, + "lat": 44.9885381, + "lon": 4.9762671, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Borne de recharge", + "operator": "Citiz" + } + }, + { + "type": "node", + "id": 6896003854, + "lat": 50.1021602, + "lon": 1.8255898, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge électrique", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PXXXBPV", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6896646971, + "lat": 48.7542321, + "lon": -3.458783, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Orange" + } + }, + { + "type": "node", + "id": 6898145411, + "lat": 48.6353868, + "lon": 2.1455705, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "email": "ms.eur-fr-res-recelecirve@totalenergies.com", + "fee": "yes", + "motorcar": "yes", + "network": "Total Charge Rapide", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "phone": "+33141354000", + "ref:EU:EVSE": "FR*HPC*PNF080155", + "socket:chademo": "4", + "socket:type2": "2", + "socket:type2_combo": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 6898145414, + "lat": 48.6359923, + "lon": 2.1467114, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 6899045645, + "lat": 43.3089477, + "lon": 6.0135388, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "NEOULES_93 Chemin de la Fontaine du Midi", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83088*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6899207596, + "lat": 46.6646739, + "lon": -0.2519821, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB31300A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 6900540822, + "lat": 49.4519903, + "lon": 1.068584, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Fond du Val", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*007", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6900941824, + "lat": 47.8689756, + "lon": -3.5849934, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Kervidanou", + "network": "La borne électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "payment:electronic_purses": "yes", + "ref:EU:EVSE": "FRS29PSDE29EAXFC", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 6901051174, + "lat": 44.9059264, + "lon": -0.2329992, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "manufacturer": "Lafon" + } + }, + { + "type": "node", + "id": 6902244357, + "lat": 48.6442875, + "lon": 1.8254433, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Borne de recharge Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 6908613885, + "lat": 45.1954196, + "lon": 5.7132339, + "tags": { + "amenity": "charging_station", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 6908917779, + "lat": 42.7544312, + "lon": 2.9935866, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66212*001", + "ref:EU:EVSE": "FR*S66*P66212*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6914914705, + "lat": 47.444581, + "lon": -0.5400648, + "tags": { + "amenity": "charging_station", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6914914706, + "lat": 47.4445581, + "lon": -0.540048, + "tags": { + "amenity": "charging_station", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6914914707, + "lat": 47.4445389, + "lon": -0.5400338, + "tags": { + "amenity": "charging_station", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6914914708, + "lat": 47.4445196, + "lon": -0.5400196, + "tags": { + "amenity": "charging_station", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 6916764383, + "lat": 48.5263246, + "lon": 2.653469, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDESM" + } + }, + { + "type": "node", + "id": 6917920207, + "lat": 42.7280545, + "lon": 2.9857606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66224*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6918710331, + "lat": 49.4898488, + "lon": 0.1330003, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6918726724, + "lat": 49.4902597, + "lon": 0.1268071, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6919527102, + "lat": 46.786365, + "lon": 1.6589073, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Borne de recharge \"Énergie verte\"", + "operator": "Lidl Cap Sud" + } + }, + { + "type": "node", + "id": 6920022662, + "lat": 46.2573407, + "lon": 6.8295237, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "payment:coins": "yes", + "payment:credit_cards": "no", + "socket:cee_blue": "6", + "socket:cee_blue:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 6920022663, + "lat": 46.2676759, + "lon": 6.8398214, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74063*B", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "start_date": "2018-11-14" + } + }, + { + "type": "node", + "id": 6920025304, + "lat": 44.3500577, + "lon": -1.071456, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40217*003", + "ref:EU:EVSE": "FR*S40*PMB40*24", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6920102465, + "lat": 48.8460994, + "lon": 2.4560173, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Murs du Parc", + "operator": "Métropolis Recharge", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 6920125746, + "lat": 48.8468876, + "lon": 2.4471759, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Gabriel Péri", + "operator": "Métropolis Recharge", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 6920188306, + "lat": 43.8554098, + "lon": 5.5917459, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref:EU:EVSE": "FR*EBN*PLK9N6FGDHT", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6920195182, + "lat": 48.8478961, + "lon": 2.4244427, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Massue", + "operator": "Effia", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6920195183, + "lat": 48.8440026, + "lon": 2.4286434, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Petit Parc", + "operator": "Effia", + "operator:wikidata": "Q3045894", + "operator:wikipedia": "fr:EFFIA", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6920195184, + "lat": 48.8514385, + "lon": 2.4368659, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - République", + "operator": "Effia", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6920195685, + "lat": 48.8507037, + "lon": 2.4409091, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Diderot", + "operator": "Effia", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6920195686, + "lat": 48.8462304, + "lon": 2.4371745, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Lejemptel", + "operator": "Effia", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6920195687, + "lat": 48.8503056, + "lon": 2.4470711, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Guynemer", + "not:operator:wikidata": "Q3045894", + "operator": "Effia", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6920195688, + "lat": 48.8497068, + "lon": 2.4549334, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Diderot", + "operator": "Effia", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 6924402798, + "lat": 47.4682686, + "lon": -0.4942859, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Marché", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref": "267-001", + "ref:EU:EVSE": "FR*S49*P49267*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6927640321, + "lat": 43.8099843, + "lon": 4.3652647, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 6932173064, + "lat": 43.561545, + "lon": 1.654642, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "payment:credit_cards": "no", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S31*PHKTRMU", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 6934762818, + "lat": 43.5865837, + "lon": 7.1197685, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Effia" + } + }, + { + "type": "node", + "id": 6935608790, + "lat": 49.3027757, + "lon": -1.2446639, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 6935830998, + "lat": 48.3813981, + "lon": -3.09389, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Brev'Car" + } + }, + { + "type": "node", + "id": 6938164069, + "lat": 44.8264323, + "lon": 5.6221662, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S38*P38113*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6938891169, + "lat": 48.5145825, + "lon": -2.7570767, + "tags": { + "amenity": "charging_station", + "brand": "Brev'Car", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "operator": "Syndicat Départemental d’Énergie", + "operator:website": "https://www.sde22.fr/bornes-de-charge-pour-v-hicules", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "2", + "socket:type3:output": "22kW" + } + }, + { + "type": "node", + "id": 6939088796, + "lat": 43.6529806, + "lon": 3.9745131, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:typee": "3" + } + }, + { + "type": "node", + "id": 6939088797, + "lat": 43.6522287, + "lon": 3.979428, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "6", + "fee": "no", + "opening_hours": "08:30-20:30", + "operator": "E.Leclerc", + "socket:type2": "11", + "socket:type3c": "11", + "socket:typee": "3", + "website": "https://www.e-leclerc.com/catalogue/services/la-borne-electrique" + } + }, + { + "type": "node", + "id": 6939917948, + "lat": 44.5702923, + "lon": 5.2750598, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26321*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6946520217, + "lat": 43.7906436, + "lon": 3.7341372, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34274*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6949060565, + "lat": 43.6578945, + "lon": 4.6332395, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "note": "2 bornes 2 places" + } + }, + { + "type": "node", + "id": 6949128190, + "lat": 43.6577983, + "lon": 4.6334847, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "note": "2 bornes 2 places" + } + }, + { + "type": "node", + "id": 6953531478, + "lat": 48.0418521, + "lon": 0.1753982, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "Auchan charge rapide", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan", + "socket:chademo": "1", + "socket:type2": "0" + } + }, + { + "type": "node", + "id": 6953531479, + "lat": 48.041837, + "lon": 0.1753009, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "Auchan charge rapide", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan", + "socket:chademo": "0", + "socket:type2": "0" + } + }, + { + "type": "node", + "id": 6959503426, + "lat": 49.2549277, + "lon": -0.3734789, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET131", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6961560963, + "lat": 46.1312562, + "lon": 3.4277046, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-10-15" + } + }, + { + "type": "node", + "id": 6964483709, + "lat": 49.7772981, + "lon": 4.7227112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "AM 050 - Charleville Mont Olympe", + "operator": "Nexans", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "7 kVA" + } + }, + { + "type": "node", + "id": 6965518380, + "lat": 43.702143, + "lon": 7.3092999, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 6966278202, + "lat": 44.9313706, + "lon": 6.7256992, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 6970225538, + "lat": 42.5491347, + "lon": 3.0217488, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66008*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6972683929, + "lat": 43.6238129, + "lon": 7.0619777, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "covered": "yes", + "level": "-1" + } + }, + { + "type": "node", + "id": 6972780441, + "lat": 43.6224526, + "lon": 7.0583817, + "tags": { + "access": "private", + "amenity": "charging_station", + "covered": "yes" + } + }, + { + "type": "node", + "id": 6975247162, + "lat": 43.6718153, + "lon": 4.6393464, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6975247163, + "lat": 43.6718815, + "lon": 4.6393023, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 6976502190, + "lat": 49.2087894, + "lon": 2.5789871, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Syndicat d’Énergie de l’Oise SE60", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCYAVCQ", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6979314369, + "lat": 48.5327245, + "lon": 7.5002054, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 6979389079, + "lat": 43.6733342, + "lon": 4.1323861, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34145001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2017-02", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 6979723876, + "lat": 47.6861017, + "lon": -0.8725287, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "parking:fee": "no", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49331*002", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6979723877, + "lat": 47.6860403, + "lon": -0.866348, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49331*001", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6979723878, + "lat": 47.6978897, + "lon": -0.8694727, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "charging_station:output": "50 kW", + "description": "Quick Charger Evtronic", + "fee": "yes", + "name": "Segré Promenade", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "ref:EU:EVSE": "FR*S49*P49331*003", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2:output": "43 kW; 50 kVA", + "socket:type2_combo": "1", + "website": "https://ouestcharge.fr/" + } + }, + { + "type": "node", + "id": 6979728423, + "lat": 47.4069518, + "lon": 0.7428887, + "tags": { + "access": "customers", + "addr:city": "Rochecorbon", + "addr:country": "FR", + "addr:housenumber": "19", + "addr:postcode": "37210", + "addr:street": "Quai de la Loire", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Tours Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/tourssupercharger" + } + }, + { + "type": "node", + "id": 6983125921, + "lat": 47.4058425, + "lon": -0.9212026, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49160*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 6983125942, + "lat": 47.4028832, + "lon": -0.9206813, + "tags": { + "amenity": "charging_station", + "name": "Borne de Recharge pour Vélo Électrique" + } + }, + { + "type": "node", + "id": 6983397983, + "lat": 48.8153835, + "lon": -3.4450145, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Brev'Car", + "operator": "SDE22" + } + }, + { + "type": "node", + "id": 6987155531, + "lat": 43.5954493, + "lon": -1.4269178, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "charge": "3.854€ / charge + 0.176€ / min après 00h15 de charge", + "description": "TYPE 2 (CÂBLE ATTACHÉ) CHADEMO COMBO CCS EU DOMESTIQUE UE", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "payment:app": "yes", + "payment:chargemap_pass": "yes", + "ref:EU:EVSE": "FR*S40*PMB40*65", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 6989185743, + "lat": 47.3411288, + "lon": 0.510993, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "mapillary": "186150083365539", + "survey:date": "2019-04-21" + } + }, + { + "type": "node", + "id": 6989607199, + "lat": 45.1702068, + "lon": 4.873502, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26295*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6990741841, + "lat": 47.3894364, + "lon": 6.7686409, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02546386", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 6993153768, + "lat": 43.3178249, + "lon": 6.4693055, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "LA GARDE FREINET_Rue De La Mairie", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83063*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7001598027, + "lat": 43.9788795, + "lon": 4.8904793, + "tags": { + "access": "customers", + "amenity": "charging_station", + "covered": "no" + } + }, + { + "type": "node", + "id": 7001598028, + "lat": 43.978798, + "lon": 4.8894244, + "tags": { + "access": "customers", + "amenity": "charging_station", + "amenity:source": "plan du centre commercial Bld'Air : https://www.buldairshopping.com/fr-fr/store-locator", + "fixme": "continue", + "source": "plan officiel du centre commercial 10/2016 https://www.buldairshopping.com/fr-fr/store-locator" + } + }, + { + "type": "node", + "id": 7001764351, + "lat": 43.9421737, + "lon": 4.8064767, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "operator": "EFFIA", + "ref": "EFFIA28", + "socket:typee": "yes", + "survey:date": "2017" + } + }, + { + "type": "node", + "id": 7001764352, + "lat": 43.9461499, + "lon": 4.8013187, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "covered": "no", + "fee": "no", + "operator": "CD84", + "source": "survey" + } + }, + { + "type": "node", + "id": 7001791103, + "lat": 44.1733566, + "lon": 4.7612852, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Freshmile", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*P58906910D54E7", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2:output": "50 kW", + "socket:type2_combo": "2", + "survey:date": "2017" + } + }, + { + "type": "node", + "id": 7003135366, + "lat": 43.8369233, + "lon": 5.0420353, + "tags": { + "addr:city": "Cavaillon", + "addr:postcode": "84300", + "addr:street": "Place de l'Abreuvoir", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "fixme": "Vérifier le nombre de place et les prises dispo", + "motorcar": "yes", + "network": "Ville de Cavaillon", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Ville de Cavaillon", + "ref:EU:EVSE": "FR*09*PPDB*1102", + "socket:type2:output": "22", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7003848295, + "lat": 47.474296, + "lon": -0.5628296, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Corne De Cerf", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*020", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 7004054516, + "lat": 48.4426264, + "lon": -2.0394188, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7004064630, + "lat": 43.1122601, + "lon": 2.289754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11293*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7004368486, + "lat": 49.2490637, + "lon": 4.0265858, + "tags": { + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 7005953830, + "lat": 43.7270129, + "lon": -1.0759681, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Borne de recharge réservée aux clients pendant les heures d'ouverture du magasin", + "operator": "Lidl", + "operator:type": "private", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 7006492733, + "lat": 43.7656968, + "lon": 5.3633967, + "tags": { + "addr:city": "Lourmarin", + "addr:postcode": "84068", + "addr:street": "D943", + "amenity": "charging_station", + "capacity": "2", + "description": "Badges et application PlugSurfing, Badges KiWhi et partenaires, Badges Sodetrel (Zen et Premium), AbonnŽs Plus de Bornes", + "fee": "yes", + "motorcar": "yes", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*9132", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 7006697677, + "lat": 44.1513567, + "lon": 4.8031175, + "tags": { + "addr:city": "Orange", + "addr:housenumber": "956", + "addr:street": "Avenue du Maréchal de Lattre de Tassigny", + "amenity": "charging_station", + "charging": "electric_car", + "charging_station": "designated", + "description": "Point de recharge accessible uniquement durant les horaires d'ouverture du point de vente. Pour tout renseignement : www.renault.fr", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "postal_code": "84100", + "ref": "REN316", + "socket:type2": "3C" + } + }, + { + "type": "node", + "id": 7006818060, + "lat": 44.3039715, + "lon": 4.7400289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "5€/45min", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*P58D280159609B", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2:output": "50 kW", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 7006818061, + "lat": 44.3039302, + "lon": 4.7400255, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*P58D280159609B", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 7006822820, + "lat": 43.9630516, + "lon": 4.799823, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charge": "5€/45min", + "fee": "yes", + "mapillary": "1510063059202337", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "GYLD", + "ref:EU:EVSE": "FR*CN1*PKZGQXC", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2:output": "50 kW", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/", + "survey:date": "2018-10-05" + } + }, + { + "type": "node", + "id": 7006839294, + "lat": 43.9824404, + "lon": 4.8824146, + "tags": { + "addr:city": "Le Pontet", + "amenity": "charging_station", + "capacity": "2", + "description": "Charge rapide", + "is_in": "Auchan le Pontet", + "owner": "Auchan", + "source": "BDOrtho IGN 2017" + } + }, + { + "type": "node", + "id": 7007651155, + "lat": 43.9311257, + "lon": 5.0621422, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "owner": "Intermarché" + } + }, + { + "type": "node", + "id": 7007651156, + "lat": 43.9310967, + "lon": 5.0621488, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "owner": "Intermarché" + } + }, + { + "type": "node", + "id": 7007681464, + "lat": 44.144282, + "lon": 4.8042608, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "note": "FIXME A vérifier", + "operator": "Concessionnaire kia Motors" + } + }, + { + "type": "node", + "id": 7007681467, + "lat": 43.9825921, + "lon": 4.876631, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "is_in": "Parking Leroy Merlin", + "note": "à recaler", + "operator": "Leroy Merlin" + } + }, + { + "type": "node", + "id": 7007696305, + "lat": 43.9560639, + "lon": 4.8911432, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 7007721514, + "lat": 43.9800208, + "lon": 4.8741244, + "tags": { + "amenity": "charging_station", + "is_in": "Parking Capitole Studio", + "network": "ZE Watt" + } + }, + { + "type": "node", + "id": 7009014423, + "lat": 47.0036434, + "lon": -1.3312538, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85224*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7011976188, + "lat": 47.9051885, + "lon": 1.9104337, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7011976189, + "lat": 47.9051731, + "lon": 1.9105044, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7011976190, + "lat": 47.9052068, + "lon": 1.9103523, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*005", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7013456672, + "lat": 47.0832397, + "lon": -1.3395412, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "operator": "SYDELA", + "owner": "SYDELA", + "ref": "FR*S44*E44043B1", + "socket:type2": "2", + "socket:type2:output": "18 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7014975294, + "lat": 42.7023751, + "lon": 2.940942, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "capacity:car": "2", + "motorcar": "yes", + "name": "Station de recharge électrique" + } + }, + { + "type": "node", + "id": 7016571782, + "lat": 48.7357182, + "lon": 7.0540466, + "tags": { + "amenity": "charging_station", + "name": "Place des Cordeliers" + } + }, + { + "type": "node", + "id": 7016579686, + "lat": 48.7338849, + "lon": 7.0599059, + "tags": { + "amenity": "charging_station", + "name": "CinéSar" + } + }, + { + "type": "node", + "id": 7016583308, + "lat": 48.7382807, + "lon": 7.0530273, + "tags": { + "amenity": "charging_station", + "name": "Gare" + } + }, + { + "type": "node", + "id": 7016583948, + "lat": 48.7223281, + "lon": 7.0431418, + "tags": { + "amenity": "charging_station", + "name": "Terrasse Normandie" + } + }, + { + "type": "node", + "id": 7016584948, + "lat": 48.6706512, + "lon": 7.1158128, + "tags": { + "amenity": "charging_station", + "name": "Troisfontaines - Rue du Stade" + } + }, + { + "type": "node", + "id": 7016588782, + "lat": 48.734293, + "lon": 7.0561127, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "name": "Sarrebourg - Mairie" + } + }, + { + "type": "node", + "id": 7016589814, + "lat": 48.7189429, + "lon": 7.0475224, + "tags": { + "amenity": "charging_station", + "name": "Parking de covoiturage" + } + }, + { + "type": "node", + "id": 7016597446, + "lat": 48.7566752, + "lon": 6.9561139, + "tags": { + "amenity": "charging_station", + "name": "Langatte - Zone de Loisirs" + } + }, + { + "type": "node", + "id": 7016608938, + "lat": 48.6368751, + "lon": 7.0963983, + "tags": { + "amenity": "charging_station", + "name": "Abreschviller" + } + }, + { + "type": "node", + "id": 7016610727, + "lat": 48.8478929, + "lon": 7.0186489, + "tags": { + "amenity": "charging_station", + "name": "Fénétrange - Parking rue des Remparts" + } + }, + { + "type": "node", + "id": 7016617530, + "lat": 48.6931342, + "lon": 6.965657, + "tags": { + "amenity": "charging_station", + "name": "Héming - Parking de la mairie" + } + }, + { + "type": "node", + "id": 7016620770, + "lat": 48.6696592, + "lon": 6.9970499, + "tags": { + "amenity": "charging_station", + "name": "Lorquin - PMU" + } + }, + { + "type": "node", + "id": 7016622229, + "lat": 48.6906923, + "lon": 7.1552813, + "tags": { + "amenity": "charging_station", + "name": "Plaine de Walsch - Rond point du Rethal" + } + }, + { + "type": "node", + "id": 7016623125, + "lat": 48.6880856, + "lon": 6.8031201, + "tags": { + "amenity": "charging_station", + "name": "Moussey - Bataville" + } + }, + { + "type": "node", + "id": 7017027767, + "lat": 48.0759006, + "lon": 7.3442764, + "tags": { + "amenity": "charging_station", + "description": "Borne de rechargement véhicule électrique" + } + }, + { + "type": "node", + "id": 7017027768, + "lat": 48.0758867, + "lon": 7.3443411, + "tags": { + "amenity": "charging_station", + "description": "Borne de rechargement véhicule électrique" + } + }, + { + "type": "node", + "id": 7017051640, + "lat": 48.0712708, + "lon": 7.3460204, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking gare Bleylé - Niveau 1 - Place n°32" + } + }, + { + "type": "node", + "id": 7017051641, + "lat": 48.0713045, + "lon": 7.3460524, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking gare Bleylé - Niveau 1 - Place n°31" + } + }, + { + "type": "node", + "id": 7017051642, + "lat": 48.0713423, + "lon": 7.3460864, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking gare Bleylé - Niveau 1 - Place n°30" + } + }, + { + "type": "node", + "id": 7017051643, + "lat": 48.0713771, + "lon": 7.3461177, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking gare Bleylé - Niveau 1 - Place n°29" + } + }, + { + "type": "node", + "id": 7017051644, + "lat": 48.0714093, + "lon": 7.3461513, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking gare Bleylé - Niveau 1 - Place n°28" + } + }, + { + "type": "node", + "id": 7017051645, + "lat": 48.0714434, + "lon": 7.346177, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking gare Bleylé - Niveau 1 - Place n°27" + } + }, + { + "type": "node", + "id": 7017089475, + "lat": 48.0834971, + "lon": 7.3569363, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Lacarre - Niveau 1 - Place n°34" + } + }, + { + "type": "node", + "id": 7017089476, + "lat": 48.0835209, + "lon": 7.3568058, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Lacarre - Niveau 1 - Place n°33" + } + }, + { + "type": "node", + "id": 7017089477, + "lat": 48.0833958, + "lon": 7.3568871, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Lacarre - Niveau 1 - Place n°29" + } + }, + { + "type": "node", + "id": 7017089478, + "lat": 48.0834272, + "lon": 7.3567614, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Lacarre - Niveau 1 - Place n°28" + } + }, + { + "type": "node", + "id": 7017108860, + "lat": 48.0769202, + "lon": 7.3543992, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Rapp - Niveau 1 - Place n°1267" + } + }, + { + "type": "node", + "id": 7017108861, + "lat": 48.0768616, + "lon": 7.3543491, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Rapp - Niveau 1 - Place n°1268" + } + }, + { + "type": "node", + "id": 7017123982, + "lat": 48.0754764, + "lon": 7.3646182, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Saint Josse - Niveau 1 - Place n°127" + } + }, + { + "type": "node", + "id": 7017123983, + "lat": 48.0755219, + "lon": 7.364763, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge véhicule électrique - Parking Saint Josse - Niveau 1 - Place n°126" + } + }, + { + "type": "node", + "id": 7019229701, + "lat": 43.4246748, + "lon": -1.6089069, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*58", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7024406721, + "lat": 46.5849436, + "lon": 0.3678396, + "tags": { + "access": "yes", + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl" + } + }, + { + "type": "node", + "id": 7024429435, + "lat": 46.1327983, + "lon": 3.4555878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PRVJNYU", + "socket:type2": "2", + "socket:typee": "2", + "source": "Bing", + "start_date": "2018" + } + }, + { + "type": "node", + "id": 7029084343, + "lat": 47.9626967, + "lon": 6.8351577, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Cahors", + "capacity": "4", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Cornimont - Rue du Daval", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "PLWE1;PLWE2;PLWE3;PLWE4", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 7029451335, + "lat": 43.9120045, + "lon": 1.2722053, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 7029682663, + "lat": 49.1526769, + "lon": 2.4425608, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Château", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PVRGNNE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7030588909, + "lat": 45.848577, + "lon": 5.8075934, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "bicycle_parking": "wall_loops", + "capacity": "4", + "contact:website": "https://ecoload.fr/teepee/", + "covered": "no", + "fee": "no", + "motorcar": "no", + "name": "Ecoload", + "note": "Point de recharge électrique + USB", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7033515601, + "lat": 47.0377768, + "lon": 6.0707229, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "no" + } + }, + { + "type": "node", + "id": 7033568816, + "lat": 47.1068201, + "lon": 6.145666, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SYDED" + } + }, + { + "type": "node", + "id": 7035232868, + "lat": 49.4992453, + "lon": 0.1675106, + "tags": { + "access": "yes", + "access:disabled": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Le Havre - Stade Océane 2", + "operator": "Ubitricity", + "operator:wikidata": "Q113699692", + "socket:type2": "2", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7037826585, + "lat": 49.2212295, + "lon": 4.0025748, + "tags": { + "addr:housenumber": "79", + "addr:street": "Rue Alfred Kastler", + "amenity": "charging_station", + "name": "Borne de Recharge Tesla", + "operator": "Tesla" + } + }, + { + "type": "node", + "id": 7037826586, + "lat": 49.2478862, + "lon": 4.0040132, + "tags": { + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 7037826685, + "lat": 49.2546849, + "lon": 4.0262867, + "tags": { + "addr:housenumber": "9", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 7037833285, + "lat": 49.2858967, + "lon": 4.0304019, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge", + "operator": "Tesla" + } + }, + { + "type": "node", + "id": 7040674885, + "lat": 49.2129932, + "lon": 4.0615298, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "description": "2 x DOMESTIQUE UE Standard / 3.7KW / Alternatif monophasé\net 2 x TYPE 3C Accelérée / 22KW / Alternatif triphasé", + "fee": "no", + "name": "Borne de recharge", + "operator": "PRIZZZ" + } + }, + { + "type": "node", + "id": 7040692988, + "lat": 49.2549624, + "lon": 4.0255714, + "tags": { + "amenity": "charging_station", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7040771635, + "lat": 42.4898734, + "lon": 2.8091687, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66106*001", + "ref:EU:EVSE": "FR*S66*P66106*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040781238, + "lat": 42.5260645, + "lon": 3.0834574, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66053*001", + "ref:EU:EVSE": "FR*S66*P66053*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040783799, + "lat": 42.526431, + "lon": 2.832321, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66024*001", + "ref:EU:EVSE": "FR*S66*P66024*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040791471, + "lat": 42.5707167, + "lon": 2.9585007, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66133*001", + "ref:EU:EVSE": "FR*S66*P66133*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040807169, + "lat": 42.5983168, + "lon": 2.9753148, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66065*002", + "ref:EU:EVSE": "FR*S66*P66065*002", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040822220, + "lat": 42.5117016, + "lon": 2.7907768, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66178*001", + "ref:EU:EVSE": "FR*S66*P66178*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040827497, + "lat": 42.6062856, + "lon": 2.892696, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66011*001", + "ref:EU:EVSE": "FR*S66*P66011*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040835316, + "lat": 42.6402522, + "lon": 2.8717429, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66144*001", + "ref:EU:EVSE": "FR*S66*P66144*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040835324, + "lat": 42.6529241, + "lon": 2.8302395, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66038*001", + "ref:EU:EVSE": "FR*S66*P66038*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040835342, + "lat": 42.6451482, + "lon": 2.5294472, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66230*001", + "ref:EU:EVSE": "FR*S66*P66230*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040835768, + "lat": 42.4758029, + "lon": 2.1018594, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66075*001", + "ref:EU:EVSE": "FR*S66*P66075*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040836087, + "lat": 42.6374741, + "lon": 2.91469, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEEL66 - 66", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref": "FR*S66*P66227*001", + "ref:EU:EVSE": "FR*S66*P66227001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7040836260, + "lat": 42.7052946, + "lon": 3.008892, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66037*002", + "ref:EU:EVSE": "FR*S66*P66037*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040836644, + "lat": 42.601497, + "lon": 2.9740997, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66065*001", + "ref:EU:EVSE": "FR*S66*P66065*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040839421, + "lat": 42.6957364, + "lon": 3.0314695, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66037*001", + "ref:EU:EVSE": "FR*S66*P66037*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040840889, + "lat": 42.6929489, + "lon": 2.8008431, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66228*001", + "ref:EU:EVSE": "FR*S66*P66228*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040841684, + "lat": 42.6711915, + "lon": 2.6226043, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66088*001", + "ref:EU:EVSE": "FR*S66*P66088*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040841872, + "lat": 42.5465053, + "lon": 2.3885339, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66222*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040842443, + "lat": 42.5152849, + "lon": 2.0623827, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66020*001", + "ref:EU:EVSE": "FR*S66*P66020001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040853542, + "lat": 42.6824773, + "lon": 2.7347555, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66170*001", + "ref:EU:EVSE": "FR*S66*P66170*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040854306, + "lat": 42.5745418, + "lon": 2.0716222, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66004*002", + "ref:EU:EVSE": "FR*S66*P66004002", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040861588, + "lat": 42.4576132, + "lon": 2.0379055, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66167*001", + "ref:EU:EVSE": "FR*S66*P66167*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040870032, + "lat": 42.6685202, + "lon": 2.3474506, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66119*001", + "ref:EU:EVSE": "FR*S66*P66119001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040871083, + "lat": 42.7754452, + "lon": 2.9901206, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66180*002", + "ref:EU:EVSE": "FR*S66*P66180*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040871679, + "lat": 42.7498051, + "lon": 2.6770786, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66118*001", + "ref:EU:EVSE": "FR*S66*P66118*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040875824, + "lat": 42.5479112, + "lon": 1.825485, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66147*001", + "ref:EU:EVSE": "FR*S66*P66147001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040876062, + "lat": 42.7303536, + "lon": 3.0250932, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66182*001", + "ref:EU:EVSE": "FR*S66*P66182*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2", + "survey:date": "2021-08" + } + }, + { + "type": "node", + "id": 7040876085, + "lat": 42.4871256, + "lon": 1.9451514, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66062*001", + "ref:EU:EVSE": "FR*S66*P66062001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040877472, + "lat": 42.5785818, + "lon": 2.0738726, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Les Angles - Rue de la Poste", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66004001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040883040, + "lat": 42.767504, + "lon": 3.0280296, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66212*002", + "ref:EU:EVSE": "FR*S66*P66212002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040884617, + "lat": 42.7580381, + "lon": 2.7541881, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66030*001", + "ref:EU:EVSE": "FR*S66*P66030*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040885091, + "lat": 42.6343702, + "lon": 2.0979099, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66081*001", + "ref:EU:EVSE": "FR*S66*P66081*001", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040894135, + "lat": 42.8300596, + "lon": 2.9179383, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66190*001", + "ref:EU:EVSE": "FR*S66*P66190*001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040895386, + "lat": 42.8284796, + "lon": 3.03857, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805021480", + "ref": "FR*S66*P66017*002", + "ref:EU:EVSE": "FR*S66*P66017002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7040895726, + "lat": 42.7844734, + "lon": 2.9676618, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66176*001", + "ref:EU:EVSE": "FR*S66*P66176*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040896204, + "lat": 42.7754481, + "lon": 2.8359774, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref": "FR*S66*P66069*001", + "ref:EU:EVSE": "FR*S66*P66069*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type3": "2", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040908232, + "lat": 45.009944, + "lon": 4.393722, + "tags": { + "addr:place": "Place de Chantoisel", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07204*A", + "ref:EU:EVSE": "FR*S07*P07204*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 7040912453, + "lat": 44.9324017, + "lon": 4.8708255, + "tags": { + "addr:street": "Avenue Georges Clemenceau", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07102*A", + "ref:EU:EVSE": "FR*S07*P07102*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040912502, + "lat": 44.657171, + "lon": 4.765453, + "tags": { + "addr:place": "Place René Cassin", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07076*A", + "ref:EU:EVSE": "FR*S07*P07076*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040914044, + "lat": 44.7145, + "lon": 4.632694, + "tags": { + "addr:place": "Place de la Mairie", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07008*A", + "ref:EU:EVSE": "FR*S07*P07008*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040918887, + "lat": 44.5528788, + "lon": 4.6857259, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07319*A", + "ref:EU:EVSE": "FR*EBN*PMGABJYHNMV", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7040920102, + "lat": 44.821415, + "lon": 4.584573, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07295*A", + "ref:EU:EVSE": "FR*S07*P07295*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040921458, + "lat": 44.9440715, + "lon": 4.8396634, + "tags": { + "addr:place": "Place André Pic", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07281*A", + "ref:EU:EVSE": "FR*S07*P07281*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7040923880, + "lat": 44.8560897, + "lon": 4.8297467, + "tags": { + "addr:street": "Le Blod", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07240*A", + "ref:EU:EVSE": "FR*S07*P07240*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041365649, + "lat": 44.3265814, + "lon": 3.5962254, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48061*001", + "ref:EU:EVSE": "FR*S48*P48061*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041366431, + "lat": 44.3451076, + "lon": 4.3659932, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07328*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041371323, + "lat": 43.9931995, + "lon": 3.6066022, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30350*001", + "ref:EU:EVSE": "FR*S30*P30350*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041379439, + "lat": 44.1552065, + "lon": 3.6853277, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref": "FR*S30*P30231*001", + "ref:EU:EVSE": "FR*S30*P30231*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041383038, + "lat": 44.3042452, + "lon": 4.6135374, + "tags": { + "addr:place": "Place de l'École", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07259*A", + "ref:EU:EVSE": "FR*EBN*PGMGOBJACDW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7041395302, + "lat": 44.5914022, + "lon": 3.9055833, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48021*001", + "ref:EU:EVSE": "FR*S48*P48021*001", + "socket:type2": "1", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041406136, + "lat": 44.3091843, + "lon": 3.1740108, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48094*001", + "ref:EU:EVSE": "FR*S48*P48094*001", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:typee": "1", + "socket:typee:output": "4" + } + }, + { + "type": "node", + "id": 7041412950, + "lat": 44.7277147, + "lon": 3.8578387, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48080*001", + "ref:EU:EVSE": "FR*S48*P48080*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041412991, + "lat": 43.9903488, + "lon": 3.6080398, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30350*002", + "ref:EU:EVSE": "FR*S30*P30350*002", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041414148, + "lat": 43.9735476, + "lon": 3.5874009, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref": "FR*S30*P30170*001", + "ref:EU:EVSE": "FR*S30*P30170*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041421630, + "lat": 44.4791634, + "lon": 3.1717403, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48156*001", + "ref:EU:EVSE": "FR*S48*P48156*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041427382, + "lat": 44.5520249, + "lon": 3.2929869, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48092*002", + "ref:EU:EVSE": "FR*S48*P48092*002", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041448141, + "lat": 44.5247804, + "lon": 3.2645877, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48099*001", + "ref:EU:EVSE": "FR*S48*P48099*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041484788, + "lat": 44.5541622, + "lon": 3.2874575, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48092*001", + "ref:EU:EVSE": "FR*S48*P48092*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041490920, + "lat": 44.5072537, + "lon": 3.6622426, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48014*001", + "ref:EU:EVSE": "FR*S48*P48014*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041518298, + "lat": 44.4905617, + "lon": 3.7377897, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48027*001", + "ref:EU:EVSE": "FR*S48*P48027*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041519885, + "lat": 44.4778259, + "lon": 3.4962735, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48137*001", + "ref:EU:EVSE": "FR*S48*P48137*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041520361, + "lat": 44.5361095, + "lon": 3.5484096, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48013*001", + "ref:EU:EVSE": "FR*S48*P48013*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041793855, + "lat": 44.8566921, + "lon": 3.3328184, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48090*001", + "ref:EU:EVSE": "FR*S48*P48090*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041819636, + "lat": 44.6598775, + "lon": 3.7549625, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48045*001", + "ref:EU:EVSE": "FR*S48*P48045*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041833084, + "lat": 44.5155764, + "lon": 3.4977675, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48095*001", + "ref:EU:EVSE": "FR*S48*P48095*001", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type3": "1", + "socket:type3:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041855471, + "lat": 44.4654023, + "lon": 3.3466619, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48039*001", + "ref:EU:EVSE": "FR*S48*P48039*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041856760, + "lat": 44.7217446, + "lon": 3.2847505, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48009*001", + "ref:EU:EVSE": "FR*S48*P48009*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041856976, + "lat": 44.5193713, + "lon": 3.4989457, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48095*002", + "ref:EU:EVSE": "FR*S48*P48095*002", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:typee": "1", + "socket:typee:output": "4" + } + }, + { + "type": "node", + "id": 7041861682, + "lat": 44.8028893, + "lon": 3.2732539, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48140*001", + "ref:EU:EVSE": "FR*S48*P48140*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041881508, + "lat": 44.7716164, + "lon": 3.0458421, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE48 48", + "ref": "FR*S48*P48031*001", + "ref:EU:EVSE": "FR*S48*P48031*001", + "socket:type2": "1", + "socket:type2:output": "18", + "socket:type3": "1", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7041896279, + "lat": 44.802856, + "lon": 3.2773456, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref": "FR*S48*P48140*003", + "ref:EU:EVSE": "FR*S48*P48140*003", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:typee": "1", + "socket:typee:output": "4" + } + }, + { + "type": "node", + "id": 7041984004, + "lat": 45.8828257, + "lon": 6.3236772, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7042316532, + "lat": 44.7007955, + "lon": 6.8686243, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "2", + "fee": "no", + "name": "Tesla Destination Charger", + "not:brand:wikidata": "Q17089620", + "operator": "Hotel Alta Peyra", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 7044863088, + "lat": 43.6708227, + "lon": 7.1908692, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7045107916, + "lat": 48.8917027, + "lon": 2.3778496, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7045107917, + "lat": 48.8916733, + "lon": 2.3778118, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7045107918, + "lat": 48.8917363, + "lon": 2.3778918, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7045107919, + "lat": 48.891771, + "lon": 2.3779321, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7045107920, + "lat": 48.8918034, + "lon": 2.377981, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7045107921, + "lat": 48.8916422, + "lon": 2.3777691, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7046100281, + "lat": 47.0357785, + "lon": -1.6404912, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44188B", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7046100282, + "lat": 47.0376647, + "lon": -1.6432341, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44188A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7049674006, + "lat": 49.1596442, + "lon": 2.2561777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue Jean Renoir", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PXXJWHG", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7049674017, + "lat": 49.1656006, + "lon": 2.2468543, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Place Charles de Gaulle", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCHAMBLYDG", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7050147360, + "lat": 48.747572, + "lon": 7.6874826, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 7051955288, + "lat": 43.5956281, + "lon": 1.4224003, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Toulouse - Allée Maurice Sarrault", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*014", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7055451506, + "lat": 45.013421, + "lon": -0.0031409, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33478*002", + "ref:EU:EVSE": "FR*S33*PMB33*127", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055459871, + "lat": 44.8962678, + "lon": -0.156993, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33394*001", + "ref:EU:EVSE": "FR*S33*PMB33*118", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055461122, + "lat": 44.8443227, + "lon": 0.2107532, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24335*001", + "ref:EU:EVSE": "FR*S24*PMB24*88", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055470199, + "lat": 44.854063, + "lon": -0.0421536, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33108*002", + "ref:EU:EVSE": "FR*S33*PMB33*30", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055471450, + "lat": 44.9240744, + "lon": -0.2717493, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33174*001", + "ref:EU:EVSE": "FR*S33*PMB33*38", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055475779, + "lat": 45.0149986, + "lon": -0.0009931, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33478*001", + "ref:EU:EVSE": "FR*S33*PMB33*126", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055476203, + "lat": 44.6943899, + "lon": -0.0887731, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33506*002", + "ref:EU:EVSE": "FR*S33*PMB33*143", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055476207, + "lat": 44.8761106, + "lon": -0.1905669, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33480*001", + "ref:EU:EVSE": "FR*S33*PMB33*128", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055478643, + "lat": 44.7784561, + "lon": -0.1261959, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33350*001", + "ref:EU:EVSE": "FR*S33*PMB33*108", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055478861, + "lat": 44.7427384, + "lon": 0.0771021, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33316*001", + "ref:EU:EVSE": "FR*S33*PMB33*99", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055481005, + "lat": 45.0151446, + "lon": -0.0305034, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33088*001", + "ref:EU:EVSE": "FR*S33*PMB33*24", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055481103, + "lat": 45.0147743, + "lon": -0.0566747, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33447*001", + "ref:EU:EVSE": "FR*S33*PMB33*124", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055485522, + "lat": 45.0696677, + "lon": -0.0975721, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Bouygues Énergies & Services", + "owner": "SDEEG 33", + "ref": "FR*S33*P33315*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7055485973, + "lat": 44.6922673, + "lon": -0.0838646, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33506*001", + "ref:EU:EVSE": "FR*S33*PMB33*144", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055491490, + "lat": 44.8786209, + "lon": -0.0313886, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33045*001", + "ref:EU:EVSE": "FR*S33*PMB33*11", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055492677, + "lat": 44.9295455, + "lon": -0.1267907, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33290*001", + "ref:EU:EVSE": "FR*S33*PMB33*97", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055496042, + "lat": 44.8525057, + "lon": -0.0432593, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "36 kW", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33108*001", + "ref:EU:EVSE": "FR*S33*PMB33*29", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055496467, + "lat": 45.0755549, + "lon": -0.4087908, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33142*001", + "ref:EU:EVSE": "FR*S33*PMB33*34", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055505843, + "lat": 45.07089, + "lon": -0.2688546, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33264*001", + "ref:EU:EVSE": "FR*S33*PMB33*88", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055514156, + "lat": 45.2900862, + "lon": -0.6093375, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33389*001", + "ref:EU:EVSE": "FR*S33*PMB33*116", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055520494, + "lat": 44.9922526, + "lon": -0.2740641, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33179*001", + "ref:EU:EVSE": "FR*S33*PMB33*39", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055520734, + "lat": 45.130134, + "lon": -0.5074471, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33382*001", + "ref:EU:EVSE": "FR*S33*PMB33*113", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055520736, + "lat": 45.1292702, + "lon": -0.6622689, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33058*001", + "ref:EU:EVSE": "FR*S33*PMB33*16", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055523016, + "lat": 45.284057, + "lon": -0.7007352, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33073*003", + "ref:EU:EVSE": "FR*S33*PMB33*22", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055525930, + "lat": 44.982399, + "lon": -0.6034139, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33256*001", + "ref:EU:EVSE": "FR*S33*PMB33*86", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055528645, + "lat": 45.1399561, + "lon": -0.4471336, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33473*001", + "ref:EU:EVSE": "FR*S33*PMB33*110", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055531255, + "lat": 44.537661, + "lon": -1.1526391, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33529*003", + "ref:EU:EVSE": "FR*S33*PMB33*56", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055543905, + "lat": 45.1493153, + "lon": -0.8220977, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33424*001", + "ref:EU:EVSE": "FR*S33*PMB33*122", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055546499, + "lat": 44.8121444, + "lon": -0.7806368, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33422*001", + "ref:EU:EVSE": "FR*S33*PMB33*121", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055553384, + "lat": 44.7652957, + "lon": -1.1389478, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33011*002", + "ref:EU:EVSE": "FR*S33*PMB33*7", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055561618, + "lat": 44.6508327, + "lon": -1.2458552, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33236*001", + "ref:EU:EVSE": "FR*S33*PMB33*77", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055567791, + "lat": 44.7646577, + "lon": -1.1414073, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33011*001", + "ref:EU:EVSE": "FR*S33*PMB33*6", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055571698, + "lat": 44.6327613, + "lon": -1.0257753, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33527*002", + "ref:EU:EVSE": "FR*S33*PMB33*72", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055576986, + "lat": 44.6354173, + "lon": -1.0214576, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33527*001", + "ref:EU:EVSE": "FR*S33*PMB33*73", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055585378, + "lat": 44.6326349, + "lon": -1.2020186, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33529*002", + "ref:EU:EVSE": "FR*S33*PMB33*54", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055585379, + "lat": 44.6381485, + "lon": -1.1448339, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33529*001", + "ref:EU:EVSE": "FR*S33*PMB33*57", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055585542, + "lat": 44.7493316, + "lon": -1.1813743, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "parking:fee": "no", + "ref": "FR*S33*P33236*002", + "ref:EU:EVSE": "FR*S33*PMB33*76", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055590875, + "lat": 44.6635338, + "lon": -1.1631198, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33009*002", + "ref:EU:EVSE": "FR*S33*PMB33*5", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055590880, + "lat": 44.7417065, + "lon": -0.6846134, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33122*001", + "ref:EU:EVSE": "FR*S33*PMB33*32", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055592057, + "lat": 44.6839427, + "lon": -1.0159685, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33019*001", + "ref:EU:EVSE": "FR*S33*PMB33*8", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055592711, + "lat": 44.639358, + "lon": -0.9654621, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33051*003", + "ref:EU:EVSE": "FR*S33*PMB33*14", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055593246, + "lat": 44.7635165, + "lon": -0.6542216, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33090*001", + "ref:EU:EVSE": "FR*S33*PMB33*25", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055594600, + "lat": 44.6904773, + "lon": -0.8542831, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33555*002", + "ref:EU:EVSE": "FR*S33*PMB33*90", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055595739, + "lat": 44.641416, + "lon": -0.9756764, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33051*001", + "ref:EU:EVSE": "FR*S33*PMB33*12", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055596891, + "lat": 44.4808398, + "lon": -1.0770504, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40287*001", + "ref:EU:EVSE": "FR*S40*PMB40*38", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055597448, + "lat": 44.9078821, + "lon": -0.4852425, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33397*002", + "ref:EU:EVSE": "FR*S33*PMB33*135", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055601463, + "lat": 44.7503488, + "lon": -0.641229, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33090*002", + "ref:EU:EVSE": "FR*S33*PMB33*26", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055602408, + "lat": 44.7276999, + "lon": -0.6014968, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33238*002", + "ref:EU:EVSE": "FR*S33*PMB33*78", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055604094, + "lat": 44.7275608, + "lon": -0.598134, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33238*001", + "ref:EU:EVSE": "FR*S33*PMB33*79", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055604522, + "lat": 44.7097487, + "lon": -0.5846666, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33274*003", + "ref:EU:EVSE": "FR*S33*PMB33*94", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055604793, + "lat": 44.7017708, + "lon": -1.0334189, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33229*001", + "ref:EU:EVSE": "FR*S33*PMB33*66", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055605287, + "lat": 44.682335, + "lon": -1.0140534, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33019*002", + "ref:EU:EVSE": "FR*S33*PMB33*9", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055608988, + "lat": 44.7717525, + "lon": -0.7018349, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33122*002", + "ref:EU:EVSE": "FR*S33*PMB33*33", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7055610576, + "lat": 44.6797757, + "lon": -0.5310774, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33213*001", + "ref:EU:EVSE": "FR*S33*PMB33*49", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056057649, + "lat": 44.9468109, + "lon": 0.0571994, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24584*001", + "ref:EU:EVSE": "FR*S24*PMB24*144", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056106863, + "lat": 44.7935566, + "lon": 0.4904138, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24274*001", + "ref:EU:EVSE": "FR*S24*PMB24*62", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056113230, + "lat": 44.9087355, + "lon": -0.4733549, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33397*001", + "ref:EU:EVSE": "FR*S33*PMB33*136", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056113241, + "lat": 44.8362832, + "lon": 0.3319958, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref": "FR*S24*P24194*001", + "ref:EU:EVSE": "FR*S24*PMB24*38", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056123462, + "lat": 44.946135, + "lon": -0.3274535, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33414*001", + "ref:EU:EVSE": "FR*S33*PMB33*119", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056126277, + "lat": 44.9198444, + "lon": -0.3617301, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33207*001", + "ref:EU:EVSE": "FR*S33*PMB33*48", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056145736, + "lat": 44.5578772, + "lon": -0.2608569, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33533*001", + "ref:EU:EVSE": "FR*S33*PMB33*149", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056162034, + "lat": 44.8429314, + "lon": -0.3967148, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33496*001", + "ref:EU:EVSE": "FR*S33*PMB33*141", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056162046, + "lat": 44.6962048, + "lon": -0.4240768, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33334*001", + "ref:EU:EVSE": "FR*S33*PMB33*104", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056166477, + "lat": 44.7558992, + "lon": -0.4883122, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33349*001", + "ref:EU:EVSE": "FR*S33*PMB33*107", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056168840, + "lat": 44.8976525, + "lon": -0.316911, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33539*001", + "ref:EU:EVSE": "FR*S33*PMB33*150", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056168841, + "lat": 44.8248091, + "lon": -0.4452936, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33165*001", + "ref:EU:EVSE": "FR*S33*PMB33*36", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056170931, + "lat": 44.9161564, + "lon": -0.4261749, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33433*001", + "ref:EU:EVSE": "FR*S33*PMB33*123", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056171883, + "lat": 44.4294876, + "lon": -0.4884142, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33484*001", + "ref:EU:EVSE": "FR*S33*PMB33*129", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056173363, + "lat": 44.9962046, + "lon": -0.4436407, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33366*001", + "ref:EU:EVSE": "FR*S33*PMB33*130", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056173364, + "lat": 44.7080303, + "lon": -0.4009165, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33550*001", + "ref:EU:EVSE": "FR*S33*PMB33*62", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056187652, + "lat": 44.7855569, + "lon": -0.4985154, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33360*001", + "ref:EU:EVSE": "FR*S33*PMB33*69", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056194880, + "lat": 44.7034403, + "lon": -0.4488053, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33037*001", + "ref:EU:EVSE": "FR*S33*PMB33*10", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056195818, + "lat": 44.6503843, + "lon": -0.3547476, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33327*001", + "ref:EU:EVSE": "FR*S33*PMB33*103", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056197678, + "lat": 44.8098762, + "lon": -0.7841519, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33422*002", + "ref:EU:EVSE": "FR*S33*PMB33*120", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056204414, + "lat": 44.7124674, + "lon": -0.5814546, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref": "FR*S33*P33274*002", + "ref:EU:EVSE": "FR*S33*PMB33*93", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056209104, + "lat": 44.8301941, + "lon": 0.2269544, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33324*001", + "ref:EU:EVSE": "FR*S33*PMB33*102", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056219019, + "lat": 44.6079512, + "lon": -0.7705061, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref": "FR*S33*P33029*001", + "ref:EU:EVSE": "FR*S33*PMB33*70", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056507156, + "lat": 43.6532495, + "lon": -1.439665, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Sur le Parking", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref": "FR*S40*P40065*002", + "ref:EU:EVSE": "FR*S40*PMB40*2", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056512442, + "lat": 44.3278843, + "lon": -0.9622277, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40332*002", + "ref:EU:EVSE": "FR*S40*PMB40*92", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:typee": "1", + "socket:typee:output": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056516013, + "lat": 44.3275859, + "lon": -0.9470773, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40332*001", + "ref:EU:EVSE": "FR*S40*PMB40*91", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:typee": "1", + "socket:typee:output": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056525927, + "lat": 44.3585547, + "lon": -0.7615811, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40200*001", + "ref:EU:EVSE": "FR*S40*PMB40*22", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056525969, + "lat": 43.6104981, + "lon": -1.3129024, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref": "FR*S40*P40292*001", + "ref:EU:EVSE": "FR*S40*PMB40*39", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056526933, + "lat": 44.0340899, + "lon": -1.2587969, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40157*001", + "ref:EU:EVSE": "FR*S40*PMB40*12", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056534689, + "lat": 43.7882465, + "lon": -1.4100775, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40328*002", + "ref:EU:EVSE": "FR*S40*PMB40*46", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7056535588, + "lat": 44.2116514, + "lon": -0.9202874, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40134*001", + "ref:EU:EVSE": "FR*S40*PMB40*11", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057159621, + "lat": 43.6344756, + "lon": -0.4876249, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40286*001", + "ref:EU:EVSE": "FR*S40*PMB40*37", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057171727, + "lat": 43.5437695, + "lon": -1.1015591, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40034*001", + "ref:EU:EVSE": "FR*S40*PMB40*25", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057183633, + "lat": 43.6373229, + "lon": -0.3805438, + "tags": { + "addr:street": "4 Chemin de la Piscine,", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40110*001", + "ref:EU:EVSE": "FR*S40*PMB40*8", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057184234, + "lat": 43.6527076, + "lon": -0.5925161, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40119*001", + "ref:EU:EVSE": "FR*S40*PMB40*9", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057189435, + "lat": 43.6574044, + "lon": -0.5921271, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40119*002", + "ref:EU:EVSE": "FR*S40*PMB40*62", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50", + "socket:typee": "1", + "socket:typee:output": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057189907, + "lat": 43.5712046, + "lon": -0.9279437, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40118*001", + "ref:EU:EVSE": "FR*S40*PMB40*61", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "36", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50", + "socket:typee": "1", + "socket:typee:output": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7057204115, + "lat": 43.6286599, + "lon": -0.8285687, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "power_supply": "yes", + "ref": "FR*S40*P40228*001", + "ref:EU:EVSE": "FR*S40*PMB40*26", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7061502132, + "lat": 45.1840691, + "lon": 5.7676999, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "mewmotion" + } + }, + { + "type": "node", + "id": 7063367165, + "lat": 45.4267106, + "lon": 1.5630444, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "mapillary": "235159325034711" + } + }, + { + "type": "node", + "id": 7067954440, + "lat": 48.8228442, + "lon": 2.3679145, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9013*07", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "survey" + } + }, + { + "type": "node", + "id": 7067993169, + "lat": 48.6846631, + "lon": 5.3249279, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Fuclem-55" + } + }, + { + "type": "node", + "id": 7067993170, + "lat": 48.6909144, + "lon": 5.3193911, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "operator": "Fuclem-55" + } + }, + { + "type": "node", + "id": 7069534938, + "lat": 45.9423932, + "lon": 6.427314, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel La Croix St Maurice" + } + }, + { + "type": "node", + "id": 7069561789, + "lat": 45.7895124, + "lon": 6.5464843, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Le Tetras" + } + }, + { + "type": "node", + "id": 7069562931, + "lat": 45.4492418, + "lon": 6.9801622, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Office TourismeVal d'Isère" + } + }, + { + "type": "node", + "id": 7069573939, + "lat": 45.2850914, + "lon": 6.8780469, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Le relais des 2 cols" + } + }, + { + "type": "node", + "id": 7069584677, + "lat": 45.0454268, + "lon": 6.3039267, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Bosch", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Castillan" + } + }, + { + "type": "node", + "id": 7071790481, + "lat": 47.9007841, + "lon": 1.901229, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*007", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7072247734, + "lat": 48.0123273, + "lon": 6.6020193, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "no", + "layer": "-1", + "location": "underground", + "source": "survey", + "voltage": "230" + } + }, + { + "type": "node", + "id": 7072919167, + "lat": 44.0893526, + "lon": 7.5933082, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06163*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7077896845, + "lat": 49.7436477, + "lon": 4.7305758, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 113 - Charleville-Mezieres - Val de vence", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 7080796085, + "lat": 49.2270826, + "lon": 4.0991173, + "tags": { + "amenity": "charging_station", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7084605383, + "lat": 43.6065718, + "lon": -0.9970446, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40233*001", + "ref:EU:EVSE": "FR*S40*PMB40*28", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084623455, + "lat": 44.032485, + "lon": 6.1359447, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04046*A", + "ref:EU:EVSE": "FR*EBN*PFACVXR", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084634712, + "lat": 43.6629234, + "lon": -1.306899, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40284*002", + "ref:EU:EVSE": "FR*S40*PMB40*36", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084636954, + "lat": 43.8149865, + "lon": -1.3787808, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40181*001", + "ref:EU:EVSE": "FR*S40*PMB40*14", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084643505, + "lat": 43.9174504, + "lon": 5.9182043, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04143*A", + "ref:EU:EVSE": "FR*EBN*PANDDND3BDK", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084655275, + "lat": 43.9958961, + "lon": 6.1963836, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04121*A", + "ref:EU:EVSE": "FR*EBN*PXZTXRU", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084672094, + "lat": 43.9197394, + "lon": -0.9183381, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40243*001", + "ref:EU:EVSE": "FR*S40*PMB40*29", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084672095, + "lat": 43.6978808, + "lon": -1.0667025, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Type de borne : accélérée (entre 2h et 8h de charge)", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref": "FR*S40*P40088*003", + "ref:EU:EVSE": "FR*S40*PMB40*6", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084710756, + "lat": 43.7101407, + "lon": -0.8335481, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40194*001", + "ref:EU:EVSE": "FR*S40*PMB40*21", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084720619, + "lat": 43.7082813, + "lon": -1.2339033, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40261*002", + "ref:EU:EVSE": "FR*S40*PMB40*31", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084721767, + "lat": 44.2310085, + "lon": -0.9851378, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40163*001", + "ref:EU:EVSE": "FR*S40*PMB40*13", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084724447, + "lat": 43.7516999, + "lon": -1.326009, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref": "FR*S40*P40310*002", + "ref:EU:EVSE": "FR*S40*PMB40*43", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084724448, + "lat": 43.7502139, + "lon": -0.7490397, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Lafon", + "capacity": "2", + "fee": "yes", + "mapillary": "5806456642773497", + "mapillary:image": "192459620132296", + "motorcar": "yes", + "name": "Borne de recharge électrique de l'église", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "payment:cards": "yes", + "payment:credit_cards": "yes", + "ref": "FR*S40*P40201*001", + "ref:EU:EVSE": "FR*S40*PMB40*23", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084733322, + "lat": 44.2133129, + "lon": -1.2919128, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Sidec", + "owner": "SYDEC 40", + "ref": "FR*S40*P40184*001", + "ref:EU:EVSE": "FR*S40*PMB40*15", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084750569, + "lat": 43.8436806, + "lon": 6.2213268, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04135*A", + "ref:EU:EVSE": "FR*EBN*PVHJVGW", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084768714, + "lat": 43.7569052, + "lon": 5.8864497, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "sde04 2x22kW", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04094*A", + "ref:EU:EVSE": "FR*EBN*PFANRVL", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084772735, + "lat": 43.96723, + "lon": 6.5084586, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04173*A", + "ref:EU:EVSE": "FR*EBN*PUQWWKV", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084781072, + "lat": 44.3710847, + "lon": 6.3120411, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04203*A", + "ref:EU:EVSE": "FR*EBN*PUYBDVS", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084781585, + "lat": 43.7592319, + "lon": 6.151861, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04176*A", + "ref:EU:EVSE": "FR*EBN*PVSQHNQ", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084783155, + "lat": 44.0300461, + "lon": 5.9755553, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04116*A", + "ref:EU:EVSE": "FR*EBN*PDDUFKV", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084785749, + "lat": 44.095154, + "lon": 6.0096757, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04049*A", + "ref:EU:EVSE": "FR*EBN*PWXTEE2IGIX", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7084801590, + "lat": 44.3701012, + "lon": 6.6012168, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04226*A", + "ref:EU:EVSE": "FR*EBN*PNTGMS3IKER", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7086934766, + "lat": 48.089346, + "lon": -4.3492797, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7088809758, + "lat": 45.3799064, + "lon": 6.5042178, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "layer": "-1", + "motorcar": "yes", + "operator": "Evlink", + "voltage": "230;400" + } + }, + { + "type": "node", + "id": 7090491915, + "lat": 44.4450099, + "lon": -1.2502433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7090643841, + "lat": 48.8286304, + "lon": 1.9669273, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA", + "payment:free": "yes", + "socket:type3c": "1" + } + }, + { + "type": "node", + "id": 7090643842, + "lat": 48.8285932, + "lon": 1.9669268, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA", + "payment:free": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7090643843, + "lat": 48.8285507, + "lon": 1.96693, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA", + "payment:free": "yes", + "socket:schuko": "2" + } + }, + { + "type": "node", + "id": 7090643844, + "lat": 48.8285149, + "lon": 1.9669287, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA", + "payment:free": "yes", + "socket:schuko": "2" + } + }, + { + "type": "node", + "id": 7090643845, + "lat": 48.8299327, + "lon": 1.9608869, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan" + } + }, + { + "type": "node", + "id": 7090740451, + "lat": 43.9092413, + "lon": 5.7174155, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04192*A", + "ref:EU:EVSE": "FR*EBN*PBWUC0Z5W3X", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7090779751, + "lat": 44.0431455, + "lon": 5.9568121, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref": "FR*S04*P04149*A", + "ref:EU:EVSE": "FR*EBN*PORK5FI3ZMM", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7093441509, + "lat": 47.4702257, + "lon": 0.6087962, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Modulo" + } + }, + { + "type": "node", + "id": 7093539801, + "lat": 49.1495303, + "lon": 0.0467522, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET169", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7099899289, + "lat": 47.6137248, + "lon": 1.416831, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Claude-de-Diray", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref": "4922", + "ref:EU:EVSE": "FR*S41*P41232-68", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7100681053, + "lat": 46.7330525, + "lon": 1.9645625, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 7101347471, + "lat": 48.5269415, + "lon": -2.0050344, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7105242838, + "lat": 44.9181685, + "lon": 0.9274197, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "no", + "scooter": "no", + "socket:typee": "2", + "truck": "no" + } + }, + { + "type": "node", + "id": 7105557214, + "lat": 44.9360561, + "lon": 1.0128276, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "no", + "scooter": "no", + "socket:typee": "2", + "truck": "no" + } + }, + { + "type": "node", + "id": 7106732789, + "lat": 48.8281721, + "lon": 1.9726345, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "level": "-1", + "operator": "Alpha Park", + "payment:free": "yes", + "socket:schuko": "6" + } + }, + { + "type": "node", + "id": 7106797112, + "lat": 48.8149024, + "lon": 1.8778857, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7106797113, + "lat": 48.8148633, + "lon": 1.8778499, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7106799827, + "lat": 48.7999869, + "lon": 1.9072567, + "tags": { + "access": "yes", + "addr:street": "Route du Pontel", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7106799828, + "lat": 48.8000203, + "lon": 1.907286, + "tags": { + "addr:street": "Route du Pontel", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7106860821, + "lat": 47.423188, + "lon": 0.6572636, + "tags": { + "amenity": "charging_station", + "authentication:none": "no", + "bicycle": "yes", + "capacity": "8", + "fee": "no", + "socket:typee": "8", + "socket:typee:output": "1.5 kW" + } + }, + { + "type": "node", + "id": 7106860822, + "lat": 47.4235691, + "lon": 0.6570034, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7107234516, + "lat": 43.5597485, + "lon": 4.0799649, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34344002", + "socket:chademo": "2", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7109098328, + "lat": 44.897649, + "lon": 4.647812, + "tags": { + "addr:street": "Avenue Vincent d'Indy", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07338*A", + "ref:EU:EVSE": "FR*S07*P07338*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7109098329, + "lat": 45.241713, + "lon": 4.670735, + "tags": { + "addr:street": "Rue de la Valette", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07010*A", + "ref:EU:EVSE": "FR*S07*P07010*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7109098330, + "lat": 44.406231, + "lon": 4.39753, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07330*A", + "ref:EU:EVSE": "FR*S07*P07330*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7109098331, + "lat": 45.188983, + "lon": 4.638471, + "tags": { + "addr:place": "Parking Salle des Fêtes", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07205*A", + "ref:EU:EVSE": "FR*S07*P07205*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 7109098332, + "lat": 44.8091005, + "lon": 4.1894042, + "tags": { + "addr:place": "Place du Marché", + "amenity": "charging_station", + "name": "P07235*A", + "operator": "SDE07", + "ref": "FR*S07*P07235*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7109098333, + "lat": 44.9065957, + "lon": 4.4222199, + "tags": { + "addr:place": "Place de la Liberté", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07064*A", + "ref:EU:EVSE": "FR*S07*P07064*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 7109098334, + "lat": 45.2398866, + "lon": 4.7986738, + "tags": { + "addr:place": "Place Maxime Chantier", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07009*A", + "ref:EU:EVSE": "FR*S07*P07009*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7109098335, + "lat": 44.7341274, + "lon": 4.5949987, + "tags": { + "addr:place": "Place du Foiral", + "amenity": "charging_station", + "name": "P07186*B", + "operator": "SDE07", + "ref": "FR*S07*P07186*B", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.sde07.com/" + } + }, + { + "type": "node", + "id": 7109098336, + "lat": 45.038481, + "lon": 4.831526, + "tags": { + "addr:street": "Chemin de Halage", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref": "P07152*A", + "ref:EU:EVSE": "FR*S07*P07152*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7112426403, + "lat": 43.6719796, + "lon": 4.63924, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7112426404, + "lat": 43.6720543, + "lon": 4.6391924, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7112458144, + "lat": 43.3172185, + "lon": -0.3600871, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Leclerc", + "parking:fee": "no", + "socket:type2": "1", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7112458145, + "lat": 43.3172085, + "lon": -0.3600284, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "operator": "Leclerc", + "parking:fee": "no", + "socket:type2": "1", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7116228818, + "lat": 49.2677974, + "lon": 4.0376293, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7116308938, + "lat": 49.0716286, + "lon": 3.8848647, + "tags": { + "amenity": "charging_station", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7116993235, + "lat": 48.3927246, + "lon": 4.5299915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "operator": "INEO TINEA", + "owner": "SDEA10", + "ref:EU:EVSE": "FR*S10*P10064A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7116993236, + "lat": 48.3915155, + "lon": 4.5279151, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "operator": "INEO TINEA", + "owner": "SDEA10", + "ref:EU:EVSE": "FR*S10*P10064C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7117235624, + "lat": 48.6261725, + "lon": 4.9642504, + "tags": { + "amenity": "charging_station", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7117282216, + "lat": 48.6905797, + "lon": 5.6230317, + "tags": { + "amenity": "charging_station", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7117298689, + "lat": 48.9883456, + "lon": 1.7114873, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "Place Henri Dunant - Vélos/scooters électriques" + } + }, + { + "type": "node", + "id": 7117298690, + "lat": 48.9882936, + "lon": 1.7115958, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "Place Henri Dunant - Vélos/scooters électriques" + } + }, + { + "type": "node", + "id": 7117304708, + "lat": 48.988394, + "lon": 1.7114265, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Place Henri Dunant", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117313900, + "lat": 48.8213373, + "lon": 5.5118583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7117350015, + "lat": 49.1634508, + "lon": 5.3832313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "modulo", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7117350016, + "lat": 49.1677747, + "lon": 5.3872094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Fuclem", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7117350017, + "lat": 49.1753352, + "lon": 5.3799483, + "tags": { + "amenity": "charging_station", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7117393432, + "lat": 48.9827414, + "lon": 1.8927104, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Descartes", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117393433, + "lat": 48.9895423, + "lon": 1.9133854, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Avenue Paul Raoult 1", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117393434, + "lat": 48.9891592, + "lon": 1.9128182, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Avenue Paul Raoult 2", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117393435, + "lat": 48.992951, + "lon": 1.9096648, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "name": "SEY Ma Borne - Place Carnot", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117393436, + "lat": 48.9922461, + "lon": 1.9134252, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Gare des Mureaux", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117393437, + "lat": 48.9967128, + "lon": 1.6663123, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - La Butte Verte", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7117393438, + "lat": 49.0006117, + "lon": 1.632768, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY Ma Borne - Rosny-sur-Seine Rue Nationale", + "operator": "SEY 78", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 7118045239, + "lat": 48.6917377, + "lon": 2.3764688, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "ref:EU:EVSE": "FR*SOD*S*SMOY*60*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7118877907, + "lat": 49.4731098, + "lon": 5.907842, + "tags": { + "amenity": "charging_station", + "source": "knowledge;Dreal" + } + }, + { + "type": "node", + "id": 7118914572, + "lat": 49.4157892, + "lon": 5.9022976, + "tags": { + "amenity": "charging_station", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7118933862, + "lat": 44.8230313, + "lon": 6.7330025, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Refuge Napoléon" + } + }, + { + "type": "node", + "id": 7118937235, + "lat": 44.4192415, + "lon": 6.7345559, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Office Tourisme Jausiers" + } + }, + { + "type": "node", + "id": 7118997680, + "lat": 43.7741927, + "lon": 7.497718, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Office Tourisme Menton" + } + }, + { + "type": "node", + "id": 7119008303, + "lat": 44.3115201, + "lon": 6.7420873, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Refuge-hôtel de Bayasse" + } + }, + { + "type": "node", + "id": 7119043511, + "lat": 45.7599304, + "lon": 6.5325833, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Centre aquasportif Le Signal" + } + }, + { + "type": "node", + "id": 7120597460, + "lat": 46.2560079, + "lon": 6.1099009, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "mapillary": "906698906778424", + "operator": "EVlink", + "survey:date": "2018-08-22" + } + }, + { + "type": "node", + "id": 7121594507, + "lat": 45.1938352, + "lon": 6.6597702, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Maison Cantonale-Office Tourisme" + } + }, + { + "type": "node", + "id": 7121622642, + "lat": 44.0903832, + "lon": 6.9693302, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Gîte Nature et Montagne" + } + }, + { + "type": "node", + "id": 7121653189, + "lat": 44.5518355, + "lon": 6.4845615, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Alpes 2 Roues" + } + }, + { + "type": "node", + "id": 7121654271, + "lat": 45.2714856, + "lon": 6.3511721, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Camping des Grands Cols" + } + }, + { + "type": "node", + "id": 7121675063, + "lat": 45.1858793, + "lon": 5.7432963, + "tags": { + "access": "yes", + "addr:city": "Grenoble", + "addr:housenumber": "7", + "addr:postcode": "38000", + "addr:street": "Boulevard Clemenceau", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "1", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "opening_hours": "Tu-Sa 10:00-12:30,14:00-19:00; PH closed", + "operator": "Natura Vélo", + "service:bicycle:miscellaneous": "yes" + } + }, + { + "type": "node", + "id": 7121698365, + "lat": 45.8631992, + "lon": 6.4940124, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Alpes aventures" + } + }, + { + "type": "node", + "id": 7122875665, + "lat": 48.9900036, + "lon": 1.6644146, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Buchelay - Rue du Béarn", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875666, + "lat": 48.9900934, + "lon": 1.673915, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Buchelay - Rue du Lot", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875667, + "lat": 48.9797221, + "lon": 1.6715519, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Buchelay - Rue Pasteur", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875668, + "lat": 48.9824951, + "lon": 1.6777183, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Buchelay - Rue Jean-Louis Scialloux", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875669, + "lat": 48.9669034, + "lon": 1.6808605, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Magnanville - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875670, + "lat": 48.9802749, + "lon": 1.8085552, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "SEY Ma Borne - Gargenville - Simone Veil", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875672, + "lat": 48.9915121, + "lon": 1.843953, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "SEY Ma Borne - Juziers - Impasse des Tennis", + "operator": "SEY 78", + "ref:EU:EVSE": "FR*Y01*P78327*001", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7122875673, + "lat": 48.9994224, + "lon": 1.8864306, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Mézy-sur-Seine - Cimetière", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875674, + "lat": 49.0052398, + "lon": 1.9627438, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Vaux-sur-Seine - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875675, + "lat": 49.006847, + "lon": 1.9638851, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Vaux-sur-Seine - Gare", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875676, + "lat": 48.945966, + "lon": 2.0257627, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Carrières-sous-Poissy - Hôtel d'Agglomération", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875677, + "lat": 48.9479688, + "lon": 2.0245997, + "tags": { + "access": "no", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Carrières-sous-Poissy - Rue du Port", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875678, + "lat": 48.978633, + "lon": 2.0580207, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Andrésy - Bords de Seine", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122875679, + "lat": 49.0051264, + "lon": 2.1162319, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Conflans-Sainte-Honorine - Place de la Liberté", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957499, + "lat": 48.9689003, + "lon": 2.076403, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Achères - Rue Jean Moulin", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957500, + "lat": 48.9324376, + "lon": 2.0425337, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "SEY Ma Borne - Poissy - Rue Jean-Claude Mary", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957502, + "lat": 48.9723081, + "lon": 1.9830362, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Vernouillet - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957503, + "lat": 48.9791444, + "lon": 1.9749992, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne -Verneuil-sur-Seine - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957504, + "lat": 48.9644872, + "lon": 1.8702978, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Flins-sur-Seine - Place du Général de Gaulle", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957505, + "lat": 48.9630157, + "lon": 1.8706724, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Flins-sur-Seine - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957506, + "lat": 48.9584427, + "lon": 1.8561972, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Aubergenville - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7122957508, + "lat": 48.9716324, + "lon": 1.8482956, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Aubergenville - Place François Mitterrand", + "operator": "SEY 78", + "ref:EU:EVSE": "FR*Y01*P78029*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7122957509, + "lat": 48.9576103, + "lon": 1.813088, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Épône - Mairie", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7125135614, + "lat": 46.6731531, + "lon": 0.652429, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B004", + "ref:EU:EVSE": "FR*S86*PSORE*B004", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "source": "http://www.alterbase86.soregies.fr/portal/#/network" + } + }, + { + "type": "node", + "id": 7127828825, + "lat": 45.3165089, + "lon": 3.6966593, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7128865158, + "lat": 43.4379328, + "lon": -1.5910531, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "2.00€/h", + "description": "Une borne de recharge pour véhicules électriques ou hybrides.", + "fee": "yes", + "mapillary": "136418795194884", + "motorcar": "yes", + "name": "MObiVE - Borne de recharge", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*38", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7128953115, + "lat": 49.6275126, + "lon": -1.6341201, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7132852203, + "lat": 43.79202, + "lon": 7.3798776, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Gare SNCF de Peille" + } + }, + { + "type": "node", + "id": 7132862968, + "lat": 44.0707525, + "lon": 7.2533666, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Vésubia Mountain Park" + } + }, + { + "type": "node", + "id": 7136647547, + "lat": 46.1570154, + "lon": 6.6684034, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "description": "Bosch eBike Power Station", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Télésiège des Chavannes" + } + }, + { + "type": "node", + "id": 7136717761, + "lat": 46.2671955, + "lon": 6.8411169, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bosch eBike Power Station", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PZ1ILFORWGY", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7136816985, + "lat": 46.2953223, + "lon": 6.7884604, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "outdoor", + "motorcar": "no", + "name": "eBike Charger Outdoor", + "operator": "Office Tourisme- La Chapelle-d'Abondance" + } + }, + { + "type": "node", + "id": 7138736081, + "lat": 47.5147694, + "lon": 5.1747385, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7139805833, + "lat": 48.0548361, + "lon": 0.2533185, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "socket:chademo": "1", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7140887060, + "lat": 48.4713361, + "lon": 0.9024133, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "internet_access": "wlan", + "internet_access:fee": "no", + "motorcar": "yes", + "name": "Rue de Paris", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "phone": "+33 1 70 39 47 64", + "ref:EU:EVSE": "FR*S61*P61241A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://61mobility.fr/" + } + }, + { + "type": "node", + "id": 7141159962, + "lat": 48.8131199, + "lon": -3.2958398, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE22" + } + }, + { + "type": "node", + "id": 7142876955, + "lat": 48.8546016, + "lon": 2.7714997, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montévrain RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "302", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7143081077, + "lat": 48.6895054, + "lon": 2.2618123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Recharge", + "operator": "Paris Saclay" + } + }, + { + "type": "node", + "id": 7143143030, + "lat": 49.4482864, + "lon": 1.0948251, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "mapillary": "uYFgh7ae0Ov9RZN9mvDDfg", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*005", + "survey:date": "2019-09-06" + } + }, + { + "type": "node", + "id": 7143143031, + "lat": 49.4482783, + "lon": 1.0949004, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "mapillary": "kRrrHBMdQ_U9QU-IrAPj-w", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*005", + "survey:date": "2019-09-06" + } + }, + { + "type": "node", + "id": 7146462564, + "lat": 48.3093297, + "lon": 6.1368111, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type3c": "2", + "voltage": "400" + } + }, + { + "type": "node", + "id": 7146547829, + "lat": 46.6468357, + "lon": 0.8364706, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Village Club LA BUISSIERE" + } + }, + { + "type": "node", + "id": 7146573151, + "lat": 44.2362918, + "lon": 5.085687, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Le Moulin de César" + } + }, + { + "type": "node", + "id": 7149710685, + "lat": 43.3172693, + "lon": 2.6344603, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34141001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7149762797, + "lat": 48.6810349, + "lon": 5.8612268, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 7149762798, + "lat": 48.681022, + "lon": 5.8611598, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 7149762800, + "lat": 48.6809384, + "lon": 5.8607186, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 7153257840, + "lat": 43.7299348, + "lon": 6.5710573, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83010*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7154102544, + "lat": 43.5132878, + "lon": 1.1751062, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7154102546, + "lat": 43.5142649, + "lon": 1.1784726, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 7154102556, + "lat": 43.514278, + "lon": 1.178455, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 7155200998, + "lat": 45.936024, + "lon": 4.7172004, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "Territoire d’Énergie Rhône - Syder;Izivia", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Territoire d’énergie Rhône - Syder", + "parking:fee": "yes", + "socket:cee_blue": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7160430919, + "lat": 49.7790458, + "lon": 4.6945853, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "AM 088 - Warcq - Pl St Paul", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 7164635732, + "lat": 48.8331831, + "lon": 2.6384554, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lognes - Mandinet - Valorée", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "223", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7164641523, + "lat": 48.8364171, + "lon": 2.662881, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "socket:type3c": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7164641524, + "lat": 48.8363933, + "lon": 2.6628864, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "socket:type3c": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7164855133, + "lat": 49.2677335, + "lon": 4.03757, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge", + "source": "Dreal Panorama des mobilités 2019" + } + }, + { + "type": "node", + "id": 7169978699, + "lat": 47.0817033, + "lon": -1.4109411, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44002B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7171824787, + "lat": 48.488628, + "lon": -2.7614948, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no" + } + }, + { + "type": "node", + "id": 7176073621, + "lat": 43.5654142, + "lon": 5.071785, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Des Ferrages", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13029*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7176810738, + "lat": -20.90222, + "lon": 55.4860772, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7177241652, + "lat": 48.1376975, + "lon": -1.7622312, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "operator:wikipedia": "en:IKEA", + "socket:type2": "yes", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 7179855450, + "lat": 50.0175892, + "lon": 1.3166796, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 7181765485, + "lat": 43.6841359, + "lon": 3.8770688, + "tags": { + "aerialway:occupancy": "2", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34169*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7181773185, + "lat": 43.6064177, + "lon": 3.9133269, + "tags": { + "aerialway:occupancy": "3", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*012", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7182456968, + "lat": 48.6854343, + "lon": 6.2207461, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "source": "knowledge;Ortho HR" + } + }, + { + "type": "node", + "id": 7184491596, + "lat": 44.3008849, + "lon": 3.3205889, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref:EU:EVSE": "FR*S48*P48088*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7187149093, + "lat": 47.8599709, + "lon": 2.2224928, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7187664209, + "lat": 49.2398725, + "lon": 4.0856504, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "name": "Borne de Recharge", + "operator": "GROOVE" + } + }, + { + "type": "node", + "id": 7190274653, + "lat": 43.4937711, + "lon": -1.4753174, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4" + } + }, + { + "type": "node", + "id": 7191445546, + "lat": 43.3345721, + "lon": -0.5066736, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Arbus - Place de la mairie", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*8", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7196177406, + "lat": 48.5280175, + "lon": 5.8979047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Communauté de communes Pays de Colombey et du Sud Toulois", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 7197953327, + "lat": 50.3842832, + "lon": 3.0475279, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59165*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7201897255, + "lat": 47.0539732, + "lon": 6.6043717, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02541184", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7201897256, + "lat": 47.0578467, + "lon": 6.605279, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02541156", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7205728365, + "lat": 48.8030455, + "lon": 1.8969909, + "tags": { + "access": "yes", + "addr:street": "Rue Louis Phélypeaux", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "ref": "FR-Y11-E78321-002-1;FR-Y11-E78321-002-2", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7205728366, + "lat": 48.780682, + "lon": 1.8924054, + "tags": { + "access": "yes", + "addr:street": "Route des Mousseaux", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "ref": "FR-Y11-E78321-001-1;FR-Y11-E78321-001-2", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7205802836, + "lat": 48.7158537, + "lon": 2.1981503, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "EDF Lab Paris-Saclay", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2:output": "7.4kW" + } + }, + { + "type": "node", + "id": 7205802837, + "lat": 48.7158469, + "lon": 2.1981487, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "EDF Lab Paris-Saclay", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2:output": "7.4kW" + } + }, + { + "type": "node", + "id": 7205802838, + "lat": 48.7158076, + "lon": 2.1981406, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "EDF Lab Paris-Saclay", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2:output": "7.4kW" + } + }, + { + "type": "node", + "id": 7205802839, + "lat": 48.7158012, + "lon": 2.1981392, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "EDF Lab Paris-Saclay", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2:output": "7.4kW" + } + }, + { + "type": "node", + "id": 7205802840, + "lat": 48.7157808, + "lon": 2.1981338, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "EDF Lab Paris-Saclay", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 7205802841, + "lat": 48.7157352, + "lon": 2.198123, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "EDF Lab Paris-Saclay", + "opening_hours": "Mo-Fr 07:00-20:00", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7212485558, + "lat": 43.6492236, + "lon": 3.9757535, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Tesla", + "socket:type2": "14", + "website": "https://www.tesla.com" + } + }, + { + "type": "node", + "id": 7214432787, + "lat": 48.8485132, + "lon": 2.4350433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fixme": "position précise et types de prises à vérifier sur le terrain", + "indoor": "yes", + "level": "-1", + "motorcar": "yes", + "name": "Parking Georges Pompidou", + "operator": "Effia" + } + }, + { + "type": "node", + "id": 7214446660, + "lat": 48.8481807, + "lon": 2.4364604, + "tags": { + "amenity": "charging_station", + "fixme": "position précise et types de prises à vérifier sur le terrain", + "indoor": "yes", + "level": "-1", + "motorcar": "yes", + "name": "Parking Parc du Marché", + "operator": "Effia" + } + }, + { + "type": "node", + "id": 7214446661, + "lat": 48.8473765, + "lon": 2.4394656, + "tags": { + "amenity": "charging_station", + "fixme": "position précise et types de prises à vérifier sur le terrain", + "indoor": "yes", + "level": "-1", + "motorcar": "yes", + "name": "Parking de l'Hôtel de Ville", + "operator": "Effia" + } + }, + { + "type": "node", + "id": 7215728342, + "lat": 47.2755637, + "lon": -1.5102798, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7216201464, + "lat": 43.6061286, + "lon": 1.4384294, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "fee": "yes", + "mapillary": "lVibjzgFyHGX02I6uXOoUL", + "motorcar": "yes", + "name": "Toulouse - Place Anatole France", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*018", + "ref:FR:REVEO": "FR-M31-E31555-018-1;FR-M31-E31555-018-2", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:type3": "2", + "socket:type3c": "2", + "socket:type3c:output": "22 kVA", + "socket:typee": "2", + "socket:typee:output": "4 kVA", + "source": "local_knowledge", + "website": "https://www.reveocharge.com/" + } + }, + { + "type": "node", + "id": 7217160182, + "lat": 48.1192224, + "lon": -1.2067629, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7222218468, + "lat": 48.6660488, + "lon": 1.8768687, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge Rambouillet Territoires", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*A05*PRMBT3812", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7222853865, + "lat": 48.8154163, + "lon": 7.7891877, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "covered": "yes", + "fee": "no", + "operator": "SEW USOCOM" + } + }, + { + "type": "node", + "id": 7226708419, + "lat": 43.2437816, + "lon": 2.1117598, + "tags": { + "addr:street": "Rue du Chanoine Andrieu", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11049002", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "www.reveocharge.fr" + } + }, + { + "type": "node", + "id": 7226708420, + "lat": 43.2427903, + "lon": 2.1159596, + "tags": { + "addr:street": "Parking Rue Marceau", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11049*003", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "www.reveocharge.fr" + } + }, + { + "type": "node", + "id": 7227896571, + "lat": 49.239323, + "lon": 4.0829745, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "DRIVEECO" + } + }, + { + "type": "node", + "id": 7232728457, + "lat": 43.6459942, + "lon": 7.1214464, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "6", + "level": "-1", + "socket:typee": "6", + "socket:typee:output": "2.9 kW" + } + }, + { + "type": "node", + "id": 7234848574, + "lat": 45.4034875, + "lon": 4.1811444, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Totem", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "SAINT MAURICE EN GOURGOIS", + "ref:EU:EVSE": "FRS42P42262A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7235300401, + "lat": 43.5491475, + "lon": 6.9717933, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Négrin", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*39*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7235306789, + "lat": 43.547955, + "lon": 6.9413047, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mandelieu-La Napoule Parking Béguier", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*26*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7235340052, + "lat": 43.5475196, + "lon": 6.9788911, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Correia", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*82*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7235364223, + "lat": 43.5692031, + "lon": 7.0158091, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking Grignan", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*84*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7235364247, + "lat": 43.5060764, + "lon": 6.9395586, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Théoule-sur-Mer Parking Place Général Bertrand", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*41*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7235401953, + "lat": 43.5547974, + "lon": 7.0222179, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Parking Braille", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*40*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7236445489, + "lat": 47.4115533, + "lon": 2.9226822, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58086*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7236559129, + "lat": 47.5702623, + "lon": -3.0778082, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56034*B", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7236649176, + "lat": 48.545805, + "lon": 5.9081742, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 7236685140, + "lat": 43.576396, + "lon": 7.006267, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking Stade Jeanpierre", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*86*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7237101445, + "lat": 48.6497356, + "lon": -1.3476825, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7238556168, + "lat": 44.1695469, + "lon": 5.4434507, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Village Vacances Léo Lagrange" + } + }, + { + "type": "node", + "id": 7238794579, + "lat": 42.2940838, + "lon": 9.1437223, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Les jardins de la Glacière" + } + }, + { + "type": "node", + "id": 7238878340, + "lat": 41.9109447, + "lon": 9.1293952, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel du Tourisme Zicavo" + } + }, + { + "type": "node", + "id": 7238887874, + "lat": 48.6249948, + "lon": -1.3368588, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7238894586, + "lat": 42.1015825, + "lon": 9.2108804, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Restaurant Le Kyrie" + } + }, + { + "type": "node", + "id": 7238901839, + "lat": 41.9326948, + "lon": 8.7426348, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Boutique AppeBike" + } + }, + { + "type": "node", + "id": 7238911711, + "lat": 41.5884485, + "lon": 9.2866871, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Costa Salina" + } + }, + { + "type": "node", + "id": 7238932871, + "lat": 42.2867812, + "lon": 8.8929516, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Castel di Vergio" + } + }, + { + "type": "node", + "id": 7238952320, + "lat": 42.455907, + "lon": 8.6733761, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Auberge Ferayola" + } + }, + { + "type": "node", + "id": 7238977503, + "lat": 42.2655444, + "lon": 8.7070256, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel Capo d'Orto" + } + }, + { + "type": "node", + "id": 7238983386, + "lat": 42.2214244, + "lon": 9.2092199, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Hôtel E Caselle" + } + }, + { + "type": "node", + "id": 7239049010, + "lat": 46.1815276, + "lon": 6.703765, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "outdoor", + "motorcar": "no", + "name": "Bosch eBike charger", + "operator": "Office de Tourisme - Morzine" + } + }, + { + "type": "node", + "id": 7239060075, + "lat": 46.1584871, + "lon": 6.669777, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike charger", + "operator": "Office de Tourisme - Les Gets" + } + }, + { + "type": "node", + "id": 7239213563, + "lat": 46.2807202, + "lon": 6.7203952, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "location": "outdoor", + "motorcar": "yes", + "name": "eBike Charger Outdoor", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PVHGFCGFP0Q", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7239217111, + "lat": 46.1919038, + "lon": 6.7756115, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "outdoor", + "motorcar": "no", + "name": "eBike Charger Outdoor", + "operator": "Office de Tourisme - Avoriaz" + } + }, + { + "type": "node", + "id": 7239256655, + "lat": 44.0707172, + "lon": 7.2222378, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Office Tourisme Colmiane" + } + }, + { + "type": "node", + "id": 7239280828, + "lat": 45.9044236, + "lon": 6.4227911, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "1", + "fee": "no", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "opening_hours": "24/7", + "operator": "Alpes Aventures La Clusaz" + } + }, + { + "type": "node", + "id": 7239303427, + "lat": 46.2329471, + "lon": 6.6563928, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "outdoor", + "motorcar": "no", + "name": "eBike Charger Outdoor", + "operator": "Office de Tourisme - Saint Jean d'Aulps" + } + }, + { + "type": "node", + "id": 7246434751, + "lat": 43.6556312, + "lon": 1.3711506, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31069*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 7247530822, + "lat": 44.3136457, + "lon": 5.8264123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05070*A", + "socket:chademo": "1", + "socket:type2": "3", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7247547824, + "lat": 44.3136251, + "lon": 5.8265098, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05070*A", + "socket:chademo": "1", + "socket:type2": "3", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7248285174, + "lat": 44.8742099, + "lon": 4.878566, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26252*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7248444171, + "lat": 47.2174562, + "lon": 0.0548411, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 7249642068, + "lat": 48.5343388, + "lon": -3.7906872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BHBG", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7252051865, + "lat": 44.3689547, + "lon": 4.6473397, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7252775508, + "lat": 47.384395, + "lon": 0.6765542, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "mapillary": "1233357013787450", + "operator": "ville de Tours", + "survey:date": "2018-08-21" + } + }, + { + "type": "node", + "id": 7253732897, + "lat": 48.8560199, + "lon": 1.8762765, + "tags": { + "access": "yes", + "addr:street": "Place du 8 Mai 1945", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "ref": "FR-Y04-E78062-001-1;FR-Y04-E78062-001-2", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 7253732898, + "lat": 48.8559855, + "lon": 1.8763179, + "tags": { + "access": "yes", + "addr:street": "Place du 8 Mai 1945", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "ref": "FR-Y04-E78062-001-3;FR-Y04-E78062-001-4", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 7254762158, + "lat": 43.6041686, + "lon": 6.9876818, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mougins Parking CC Tournamy 700", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*46*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254762159, + "lat": 43.6010909, + "lon": 6.9973783, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mougins Parking du Moulin de la Croix", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*44*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254773142, + "lat": 43.4443074, + "lon": 6.6363735, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Roquebrune sur Argens - Boulevard Jean Jaurès", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83107*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254773143, + "lat": 43.442627, + "lon": 6.634532, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Roquebrune sur Argens - Boulevard Ferdinand Clavel", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83107*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254777480, + "lat": 43.6177697, + "lon": 7.0746606, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CASA", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT-005004", + "ref:EU:EVSE": "FR*A16*PWIIZ1911", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "socket:typee:voltage": "230 V", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7254778504, + "lat": 43.577129, + "lon": 6.998012, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Cannet Parking les Lentisques", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*85*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7254778505, + "lat": 43.580824, + "lon": 6.998574, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mougins Parking piscine des Campelières", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*48*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254784915, + "lat": 43.45612, + "lon": 6.685957, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Puget sur Argens Rue Jubert", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83099*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254784916, + "lat": 43.4537008, + "lon": 6.6837036, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Puget sur Argens Rue Gabriel Peri", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83099*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254784917, + "lat": 43.4440961, + "lon": 6.7063214, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grand Esterel", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0003", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254805826, + "lat": 43.525115, + "lon": 6.813964, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Les Adrets De L'Esterel Place de la Mairie", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83001*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254805827, + "lat": 43.4850789, + "lon": 6.9341181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Théoule-sur-Mer Port de la Figueirette", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*42*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254805828, + "lat": 43.549852, + "lon": 6.966343, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Cannes Contre Allée Francis Tonner", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*43*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254805829, + "lat": 43.5342599, + "lon": 6.9452222, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mandelieu-La Napoule Parking Robinson (Théatre de Verdure)", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "CAPL", + "ref:EU:EVSE": "FR*A16*P*WIIZ*27*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254830678, + "lat": 43.6454381, + "lon": 6.8911981, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Peymeinade", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "CAPG", + "ref:EU:EVSE": "FR*SOD*S*WIIZ*94*1*_*_", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7254830679, + "lat": 43.6242196, + "lon": 6.6968805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Fayence - Avenue René Cassin", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83055*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254830680, + "lat": 43.536283, + "lon": 6.699922, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard du Rayol", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83008*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254830681, + "lat": 43.5368466, + "lon": 6.6984483, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Montée de derrière le Château", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83008*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254830682, + "lat": 43.5012312, + "lon": 6.644601, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Roquebrune sur Argens - Allée Du 15 Aout 1944", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83107*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254830683, + "lat": 43.470667, + "lon": 6.5667105, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Le Muy - Parking Le Roucas", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83086*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843713, + "lat": 43.337839, + "lon": 6.546778, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Plan de la Tour", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0013", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254843714, + "lat": 43.3423623, + "lon": 6.6911891, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "ROQUEBRUNE SUR ARGENS_Boulevard Des Murenes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref": "QQPZ2", + "ref:EU:EVSE": "FR*S83*P83107*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843715, + "lat": 43.4538387, + "lon": 6.4268823, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "TARADEAU_23 rue l'Ormeau", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83134*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843716, + "lat": 43.427743, + "lon": 6.222368, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "CABASSE_21-22 Rue Jules Ferry", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83026*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843719, + "lat": 43.5151464, + "lon": 6.2413648, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "ENTRECASTEAUX_Parking Le Collet", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83051*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843726, + "lat": 43.4508718, + "lon": 6.3040554, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LE THORONET_208 Boulevard du 17 Aout 1944", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83136*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843727, + "lat": 43.590682, + "lon": 6.535475, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "CALLAS_Chemin Des Frayeres", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83028*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843728, + "lat": 43.571181, + "lon": 6.497017, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "FIGANIERES_4 Avenue des Marthes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83056*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843729, + "lat": 43.597875, + "lon": 6.450228, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "CHATEAUDOUBLE_Saint-Eloi", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83038*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843730, + "lat": 43.6059701, + "lon": 6.3824511, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "AMPUS_8 Boulevard Georges Clemenceau", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83003*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843731, + "lat": 43.4908385, + "lon": 6.3610641, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LORGUES_10 Rue Du 8 Mai 1945", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83072*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843732, + "lat": 43.626476, + "lon": 6.2254064, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "AUPS _ Place Martin Bidouré", + "opening_hours": "24/7", + "operator": "Réseau eborn", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83007*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254843733, + "lat": 43.562878, + "lon": 6.233225, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SALERNES_Place Clemenceau", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83121*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254858132, + "lat": 43.728944, + "lon": 6.793374, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Escragnolles Parking Salle des Fêtes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref": "MAT-005028", + "ref:EU:EVSE": "FR*A16*P*WIIZ*28*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254858133, + "lat": 43.700354, + "lon": 6.847364, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Vallier-de-Thiey Parking Espace du Thiey", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*81*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254858134, + "lat": 43.7995442, + "lon": 6.8079594, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Andon Lac de Thorenc", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*34*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254858135, + "lat": 43.843213, + "lon": 6.858089, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Mas Parking couvert", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*29*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254858136, + "lat": 43.8888094, + "lon": 6.8634078, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Collongues Place du Château", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*78*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254891625, + "lat": 43.300398, + "lon": 6.1854288, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "CARNOULES_Avenue Colonel Fabien", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83033*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254891626, + "lat": 43.3013518, + "lon": 6.2295933, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "PIGNANS_Avenue De La Mairie", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83092*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254891628, + "lat": 43.3926843, + "lon": 6.3165093, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LE LUC_Parking Rond point de l'Europe", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83073*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254891629, + "lat": 43.3905079, + "lon": 6.342802, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LE CANNET DES MAURES_48 Avenue du 8 mai 1945", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83031*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254931784, + "lat": 43.1913304, + "lon": 6.0398278, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SOLLIES PONT_Parking Rezzonico", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83130*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932699, + "lat": 43.135207, + "lon": 6.23577, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LA LONDE LES MAURES_Place Victor Hugo", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83071*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932709, + "lat": 43.1241446, + "lon": 6.361902, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BORMES LES MIMOSAS_Sentier des Pêcheurs", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83019*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932710, + "lat": 43.1378709, + "lon": 6.36969, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "LE LAVANDOU_Boulevard De Lattre Tassigny", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83070*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932711, + "lat": 43.1438468, + "lon": 6.338745, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BORMES LES MIMOSAS_38 Rue Montagard", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83019*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932712, + "lat": 43.1505668, + "lon": 6.3447708, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BORMES LES MIMOSAS_Place Saint-Francois", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83019*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932713, + "lat": 43.1709459, + "lon": 6.534893, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Médiathèque- Cavalaire-sur-Mer", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0001", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7254932718, + "lat": 43.2083242, + "lon": 6.4639672, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LA MOLE_Parking Rue Du Four", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83079*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932719, + "lat": 43.2073137, + "lon": 6.5687321, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Croix-Valmer Parking", + "network": "VILLE DE LA CROIX VALMER", + "opening_hours": "24/7", + "operator": "ELECTRIC 55 CHARGING", + "owner": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR*09*PPDB*0006", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 7254932720, + "lat": 43.217272, + "lon": 6.6108485, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "RAMATUELLE_Boulevard Du Huit Mai 1945", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83101*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932721, + "lat": 43.227475, + "lon": 6.661056, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Club 55", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0011", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254932722, + "lat": 43.2647568, + "lon": 6.6653157, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Tropez, plage des canoubiers", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*9127", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254932723, + "lat": 43.2694801, + "lon": 6.640555, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint Tropez, place du XVeme corp", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*9126", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254932724, + "lat": 43.2704623, + "lon": 6.6352725, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "PARKING DU PORT", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0002", + "socket:type2": "4", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 7254932725, + "lat": 43.2747565, + "lon": 6.5774199, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "PORT GRIMAUD", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0007", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254932726, + "lat": 43.2744232, + "lon": 6.5228923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grimaud Mairie", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0005", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254932727, + "lat": 43.2727493, + "lon": 6.5212964, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "GRIMAUD RN7", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0008", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7254932728, + "lat": 43.33822, + "lon": 5.976662, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LA ROQUEBRUSSANNE_Place Gueit", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83108*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932729, + "lat": 43.311571, + "lon": 6.012054, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "NEOULES_7 Avenue de Fontaine Marcellin", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83088*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932730, + "lat": 43.330293, + "lon": 6.044463, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "GAREOULT_Rue De La Russie", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83064*A", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 7254932731, + "lat": 43.314384, + "lon": 6.357913, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LES MAYONS_Avenue Pierre Gaudin", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83075*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932732, + "lat": 43.3235338, + "lon": 6.2937194, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "GONFARON_Pont de Maurice", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83067*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932733, + "lat": 43.319471, + "lon": 6.288639, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "GONFARON_02-04 Avenue du Onze Novembre 1918", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83067*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254932734, + "lat": 43.288093, + "lon": 6.137679, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "PUGET VILLE_1-6 Rue des Cantons", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83100*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949685, + "lat": 43.2081954, + "lon": 6.0276264, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SOLLIES TOUCAS_Avenue Du Gapeau", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83131*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949686, + "lat": 43.196785, + "lon": 6.006072, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SOLLIES TOUCAS_1475 Route de Valaury", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83131*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949687, + "lat": 43.191311, + "lon": 6.03984, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SOLLIES PONT_Avenue de la Liberte", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83130*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949688, + "lat": 43.1371698, + "lon": 5.8473799, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "OLLIOULES_Place Lemoyne", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83090*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949689, + "lat": 43.1285939, + "lon": 5.8890539, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "TOULON_Parking Escaillon 2", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83137*E", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949690, + "lat": 43.1251, + "lon": 5.9258, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "TOULON_Ancienne prison St Roch", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83137*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949691, + "lat": 43.080579, + "lon": 5.894283, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LA SEYNE SUR MER_Parking Parc Braudel", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83126*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949696, + "lat": 43.071083, + "lon": 5.907343, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "ST MANDRIER SUR MER_Boulevard Saint-Asile", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83153*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949697, + "lat": 43.0752739, + "lon": 5.9275852, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "ST MANDRIER SUR MER_Chemin Des Aubepines", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83153*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949698, + "lat": 43.092958, + "lon": 6.074425, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "CARQUEIRANNE_Rue De La Liberation", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83034*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949699, + "lat": 43.096204, + "lon": 6.069992, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "CARQUEIRANNE_Avenue Jean Jaures", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83034*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949702, + "lat": 43.106136, + "lon": 6.024325, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LE PRADET_Rue Paulin David", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83098*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949703, + "lat": 43.1076169, + "lon": 6.0217497, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "LE PRADET_108 Rue Charles Gounod", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83098*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949704, + "lat": 43.142785, + "lon": 6.016314, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "LA VALETTE DU VAR - Rn 98", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Centre commercial Grand Var", + "ref:EU:EVSE": "FR*G05*P83144*001", + "socket:type2": "5", + "socket:type2_combo": "1", + "socket:typee": "5" + } + }, + { + "type": "node", + "id": 7254949705, + "lat": 43.1483382, + "lon": 6.074581, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LA CRAU_01-03 Boulevard de la République", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83047*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949706, + "lat": 43.150988, + "lon": 6.072607, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LA CRAU_02 Place du Maréchal De Lattre Tassigny", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83047*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949716, + "lat": 43.120434, + "lon": 6.010353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "LA GARDE_Parking Gymnase J.Troin", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83062*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254949722, + "lat": 43.1397111, + "lon": 6.236778, + "tags": { + "addr:street": "Rue des Poilus", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83071*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254955117, + "lat": 49.8481776, + "lon": 3.2861065, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking de la Criée", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0005", + "ref:EU:EVSE": "FR*S02*P026915", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7254955118, + "lat": 49.8476649, + "lon": 3.2862088, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking de la Criée", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0006", + "ref:EU:EVSE": "FR*S02*P026916", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7254955119, + "lat": 49.859799, + "lon": 3.2955495, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0049 - Place de la citoyenneté", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269149A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254955120, + "lat": 49.8348068, + "lon": 3.3064863, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0012 - rue de la Fêre", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269112A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254961830, + "lat": 49.8779615, + "lon": 3.1503485, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0085 - Place de l'Hôtel de ville", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0278585A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993137, + "lat": 49.8391233, + "lon": 3.2859302, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Piscine rue Lamartine", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0007", + "ref:EU:EVSE": "FR*S02*P026917", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7254993138, + "lat": 49.8390998, + "lon": 3.2858748, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Piscine rue Lamartine", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0007", + "ref:EU:EVSE": "FR*S02*E026917A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993139, + "lat": 49.84166, + "lon": 3.300593, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0011 - Avenue Léo Lagrange", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269111A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993140, + "lat": 49.8363863, + "lon": 3.317876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0013 - Avenue Pierre Choquart", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269113A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993141, + "lat": 49.8430139, + "lon": 3.2952691, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0010 -Boulevard Gambetta", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269110A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993142, + "lat": 49.8338113, + "lon": 3.3010927, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0060 - UTAS de Saint-Quentin", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269160A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993143, + "lat": 49.835463, + "lon": 3.265417, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "0014 - Rue de Paris", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*E0269114A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993144, + "lat": 49.851742, + "lon": 3.2769047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Square André Malraux", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0008", + "ref:EU:EVSE": "FR*S02*P0026918", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7254993145, + "lat": 49.8455801, + "lon": 3.28328, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Square André Malraux", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0008", + "ref:EU:EVSE": "FR*S02*E0026918A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993146, + "lat": 49.8455585, + "lon": 3.2831727, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Square André Malraux", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref": "0009", + "ref:EU:EVSE": "FR*S02*E026919A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993823, + "lat": 43.39442, + "lon": 6.0392076, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "La Celle_Rue De La Republique", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83037*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254993824, + "lat": 43.226478, + "lon": 6.144734, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "PIERREFEU DU VAR_2 Rue Dr Edmond Mercier", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83091*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7254993825, + "lat": 43.2280528, + "lon": 6.1433145, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "PIERREFEU DU VAR_2 Avenue Léon Blum", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83091*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7254993834, + "lat": 43.2377038, + "lon": 6.0750824, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "CUERS_Chemin De La Guinguette", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SymielecVar", + "ref:EU:EVSE": "FR*S83*P83049*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7254993835, + "lat": 43.2366027, + "lon": 6.0737635, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "CUERS_Avenue Mal De Lattre De Tassigny", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SymielecVar", + "ref:EU:EVSE": "FR*S83*P83049*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7254993836, + "lat": 43.2466022, + "lon": 6.0002235, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BELGENTIER_Avenue Louis Arnaud", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83017*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7254995807, + "lat": 49.6646673, + "lon": 1.9398148, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Grandvilliers, Place Barbier", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PGRANDVILLIERS", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255023801, + "lat": 48.8826685, + "lon": 2.3197749, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9017*06", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.belib.paris" + } + }, + { + "type": "node", + "id": 7255025233, + "lat": 43.4081285, + "lon": 6.0739638, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BRIGNOLES_3 Rue Bruneck Brunico", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83023*F", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255025234, + "lat": 43.4042729, + "lon": 6.0642818, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BRIGNOLES_7 Cours de la Liberte", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83023*E", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255025235, + "lat": 43.403983, + "lon": 6.062531, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BRIGNOLES_01 Rue du portail Neuf", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83023*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255025236, + "lat": 43.4075577, + "lon": 6.066475, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "BRIGNOLES_09 Avenue Maréchal Foch", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83023*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255025237, + "lat": 43.4072378, + "lon": 6.0616625, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BRIGNOLES_15 Rue Petit Paradis", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83023*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255025238, + "lat": 43.406661, + "lon": 6.058906, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "BRIGNOLES_29 Rue de la République", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83023*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255043989, + "lat": 43.3715375, + "lon": 5.785247, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "NANS LES PINS_Avenue Julien Jourdan", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83087*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255043990, + "lat": 43.4523414, + "lon": 5.8588416, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Maximin-la-Sainte-Baume Chemin de Réal Vieux", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83116*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255043991, + "lat": 43.3933026, + "lon": 5.8511904, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "ROUGIERS_Rue de la Rousse", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83110*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255043992, + "lat": 43.4116126, + "lon": 5.9204533, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "TOURVES_Avenue de la Libération", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83140*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255060854, + "lat": 43.2905694, + "lon": 5.8623835, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SIGNES_Rue Ferraillette", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83127*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255060855, + "lat": 43.288929, + "lon": 5.86157, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SIGNES_Chemin De La Rode", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83127*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255067799, + "lat": 43.1764478, + "lon": 5.7718936, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "LE CASTELLET_3054 Route des Sources", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83035*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255067800, + "lat": 43.1200402, + "lon": 5.8010036, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SANARY SUR MER_121 Avenue General Rose", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83123*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255067801, + "lat": 43.117051, + "lon": 5.8063884, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SANARY SUR MER_71 Boulevard George Clemenceau", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83123*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255067802, + "lat": 43.1124859, + "lon": 5.8118732, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "SMDE Var Charging Station", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83129*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255067803, + "lat": 43.0998493, + "lon": 5.8119146, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SIX FOURS LES PLAGES_50 Corniche de la Coudouliere", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83129*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100829, + "lat": 43.7109134, + "lon": 6.5067878, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "COMPS-SUR-ARTUBY_Avenue De La Fontenouille", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83044*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100830, + "lat": 43.774895, + "lon": 6.2430191, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "AIGUINES_Place De La Mairie", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S83*P83002*A", + "socket:type2": "2", + "socket:typee": "2", + "website": "http://www.mouvelecvar.orios-infos.com/" + } + }, + { + "type": "node", + "id": 7255100831, + "lat": 43.732476, + "lon": 6.176766, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "BAUDUEN_Rue des Jardins", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83015*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100832, + "lat": 43.6088335, + "lon": 5.7569687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "RIANS_Avenue Franklin Roosevelt", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83104*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100833, + "lat": 43.606062, + "lon": 5.7520823, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "RIANS_Rue du Lavoir Neuf", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83104*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100834, + "lat": 43.636472, + "lon": 5.935913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "LA VERDIERE_Route De Varage", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83146*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100835, + "lat": 43.5976675, + "lon": 5.9604486, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "VARAGES_Place De La Liberation", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83145*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100836, + "lat": 43.4755616, + "lon": 6.1820529, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "CARCES_Rue Florentin Giraud", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83032*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100837, + "lat": 43.473247, + "lon": 6.121209, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "MONTFORT SUR ARGENS_Rue De La Rougiere", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83083*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100838, + "lat": 43.4851446, + "lon": 6.0807372, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "CORRENS_Condamine", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83045*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100839, + "lat": 43.553296, + "lon": 6.029939, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "PONTEVES_Chemin de Brignoles", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83095*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7255100840, + "lat": 43.1346964, + "lon": 5.7530112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "3799310016845011", + "motorcar": "yes", + "name": "Bandol_3 Alle Alfred Vivien", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83009*A", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-09-06" + } + }, + { + "type": "node", + "id": 7255549085, + "lat": 46.1675904, + "lon": 1.8713665, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7255568441, + "lat": 47.0102197, + "lon": 0.0827445, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "service-recharge@soregies.fr", + "fee": "yes", + "motorcar": "yes", + "name": "B056", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "payment:credit_cards": "no", + "phone": "+33549447900", + "ref:EU:EVSE": "FR*S86*PSOREB056", + "socket:type2": "2", + "socket:type3": "1", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 7255813891, + "lat": 43.6769749, + "lon": 4.0888821, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34146001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 7256072808, + "lat": 47.7724093, + "lon": -3.5257784, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56078*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7256075118, + "lat": 47.7926258, + "lon": -3.4931489, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56078*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7256128274, + "lat": 46.1403884, + "lon": 3.406611, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "1", + "source": "survey", + "survey:date": "2023-04-30" + } + }, + { + "type": "node", + "id": 7256176140, + "lat": 46.1305761, + "lon": 3.4265126, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "survey:date": "2020-02-09" + } + }, + { + "type": "node", + "id": 7256342678, + "lat": 44.2956705, + "lon": 2.8347919, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12266*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2019" + } + }, + { + "type": "node", + "id": 7257206969, + "lat": 47.6595168, + "lon": 0.6495868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7257730461, + "lat": 48.0100505, + "lon": -1.4298788, + "tags": { + "amenity": "charging_station", + "operator": "SDE 35" + } + }, + { + "type": "node", + "id": 7257846595, + "lat": 48.6338906, + "lon": 2.3438175, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 7258069239, + "lat": 42.4815573, + "lon": 3.1262542, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66016*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7258075573, + "lat": 42.5617145, + "lon": 2.6252577, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66153*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7258092483, + "lat": 42.6074702, + "lon": 2.8114456, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66247*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7258211706, + "lat": 42.7165525, + "lon": 2.8387808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66172*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7258621483, + "lat": 48.1039843, + "lon": -1.649588, + "tags": { + "amenity": "charging_station", + "authentication:application": "yes", + "authentication:membership_card": "Chargemap Pass", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "note": "usage possible sans carte pour 1€ de plus , via l'app", + "opening_hours": "24/7", + "operator": "SDE 35", + "parking:fee": "inconnu", + "ref": "MAT-006754", + "socket:type2": "2", + "socket:type2:output": "18KW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "source:socket:type2:output": "https://fr.chargemap.com/sde35-cimetiere-de-lest-rennes.html", + "source:socket:typee": "https://fr.chargemap.com/sde35-cimetiere-de-lest-rennes.html", + "website": "https://ouestcharge.fr" + } + }, + { + "type": "node", + "id": 7259097638, + "lat": 44.4286683, + "lon": 5.7180956, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05166*A", + "socket:chademo": "1", + "socket:type2": "3", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7259508182, + "lat": 46.9010109, + "lon": 6.3441042, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "fixme": "Ajouter des détails", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 7260612185, + "lat": 49.2233587, + "lon": 1.064859, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref": "900032", + "ref:EU:EVSE": "FR*S27*PHAYEMALHERBE*EGLISE", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "survey:date": "2020-03-03" + } + }, + { + "type": "node", + "id": 7260796196, + "lat": 50.6319666, + "lon": 3.2401844, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Willems - Mairie", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*239*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7260802317, + "lat": 48.6798699, + "lon": -3.5234106, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7261392275, + "lat": 42.8758033, + "lon": 2.3507951, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11055001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7261459758, + "lat": 43.0220193, + "lon": 3.037609, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11266002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261463901, + "lat": 42.9114685, + "lon": 3.0244464, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11202001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261473723, + "lat": 43.0515561, + "lon": 2.9280504, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11295002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261480580, + "lat": 42.9930051, + "lon": 2.953593, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11322001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261484370, + "lat": 42.9351684, + "lon": 3.0317083, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11202003", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261490803, + "lat": 42.8552719, + "lon": 3.0364405, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11202002", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type3": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261508369, + "lat": 43.1224325, + "lon": 2.9896786, + "tags": { + "amenity": "charging_station", + "amperage": "26", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11024001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 7261511002, + "lat": 43.1084021, + "lon": 3.0902227, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11170002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261512390, + "lat": 43.0275892, + "lon": 2.9816224, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11379002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261516812, + "lat": 43.1048472, + "lon": 3.0889911, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11170003", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261520648, + "lat": 43.2045985, + "lon": 3.0743157, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11441001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7261521112, + "lat": 43.1743369, + "lon": 2.99275, + "tags": { + "amenity": "charging_station", + "amperage": "26", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 7263872184, + "lat": 44.2183058, + "lon": 4.4864569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30096*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7263891377, + "lat": 44.0080818, + "lon": 4.419554, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S30*P30334*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7264780718, + "lat": 43.7326774, + "lon": 3.3199678, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "REVEO", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34142*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7264797495, + "lat": 43.6517194, + "lon": 3.5448087, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34114*003", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265586893, + "lat": 44.958939, + "lon": 4.8841457, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7265635474, + "lat": 43.2802579, + "lon": 2.7302373, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34189001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265655205, + "lat": 43.2008665, + "lon": 2.2100979, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11018001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265665312, + "lat": 43.1733954, + "lon": 2.3888116, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11272001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265670668, + "lat": 43.2466041, + "lon": 3.0001413, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11116001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7265672061, + "lat": 43.2215738, + "lon": 2.3944952, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11069*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265672062, + "lat": 43.2216095, + "lon": 2.3943781, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11069*003", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265673978, + "lat": 43.2104305, + "lon": 2.4439177, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11397*001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265680325, + "lat": 43.3423197, + "lon": 2.4126195, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11205*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265686440, + "lat": 43.2554433, + "lon": 2.9488741, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11369001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7265696411, + "lat": 43.2476868, + "lon": 2.9180368, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11353001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7265696412, + "lat": 43.2349007, + "lon": 3.056366, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11106001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7265697284, + "lat": 43.2678803, + "lon": 2.7199005, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11172001", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type3": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 7265711452, + "lat": 43.2274863, + "lon": 3.1346491, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11145001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7265712489, + "lat": 43.2392877, + "lon": 3.1172005, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11370001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7265775759, + "lat": 48.379959, + "lon": -4.60053, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "PLOUZANE - Rue Moquet", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Brest Métropole", + "ref:EU:EVSE": "FR*M29*P29212*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7265971414, + "lat": 50.1564704, + "lon": 3.2224032, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 7266381898, + "lat": 43.1038267, + "lon": 2.2486084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11090*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266421853, + "lat": 43.2392712, + "lon": 2.2282098, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11437*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266427112, + "lat": 42.921722, + "lon": 2.320827, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11310*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266453114, + "lat": 43.2536543, + "lon": 2.2687313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11288001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266470904, + "lat": 43.3702128, + "lon": 2.2861741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11115*002", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266470905, + "lat": 43.3701452, + "lon": 2.2861674, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11115*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266480359, + "lat": 43.1855786, + "lon": 2.5601059, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11068001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266487198, + "lat": 43.3125342, + "lon": 1.9503893, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11076*003", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266496042, + "lat": 43.2824728, + "lon": 2.0885141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11434*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266496206, + "lat": 43.187923, + "lon": 2.5493429, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11068002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266496229, + "lat": 42.9833134, + "lon": 2.0067717, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11091001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266498112, + "lat": 43.2949756, + "lon": 2.0429812, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11192001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266499314, + "lat": 43.2701777, + "lon": 1.9431624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11138*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266499356, + "lat": 43.3201929, + "lon": 1.9513111, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11076002", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266519653, + "lat": 42.8030713, + "lon": 2.2286399, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11021002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7266520502, + "lat": 42.9206354, + "lon": 2.0448498, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11303*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7271600245, + "lat": 48.9443302, + "lon": 1.7333712, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Mairie Guerville", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7271600246, + "lat": 48.9456478, + "lon": 1.8316287, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY Ma Borne - Mairie de La Falaise", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 7271600247, + "lat": 48.9783768, + "lon": 2.0303533, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Mairie de Chanteloup-les-Vignes", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7271600248, + "lat": 48.9288218, + "lon": 1.8436185, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY Ma Borne - Mairie d'Aulnay-sur-Mauldre", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 7271600249, + "lat": 48.9481318, + "lon": 1.9222925, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Ecquevilly - Place de Fresnes", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7271600250, + "lat": 48.980051, + "lon": 1.7111249, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Parking CPAM", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7271600251, + "lat": 49.0145814, + "lon": 1.6959297, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "SEY Ma Borne - Follainville-Dennemont - Chapelle", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 7272597503, + "lat": 44.4306965, + "lon": 3.2143519, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE48 48", + "ref:EU:EVSE": "FR*S48*P48034*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7272621993, + "lat": 43.9331394, + "lon": 3.7105945, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34111*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7272628887, + "lat": 43.7661107, + "lon": 3.8629649, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34276*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7272639104, + "lat": 43.669486, + "lon": 4.0637114, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34321001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7272640228, + "lat": 43.6534234, + "lon": 4.0000546, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*M34*P34022001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7273716294, + "lat": 49.986415, + "lon": 3.4517775, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Du Cimetière", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "0017", + "ref:EU:EVSE": "FR*S02*P0209517", + "socket:type1": "2", + "socket:type1:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://my.freshmile.com/charge/00171" + } + }, + { + "type": "node", + "id": 7273812398, + "lat": 45.8772136, + "lon": 1.2409817, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "ref": "NLZR1" + } + }, + { + "type": "node", + "id": 7273852478, + "lat": 43.524232, + "lon": 0.1617238, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "note": "22 kW, 2 kW", + "operator": "Freshmile", + "ref": "GDWE", + "source": "https://www.freshmile.com/", + "website": "https://my.freshmile.com/charge/GDWE2", + "wheelchair": "limited" + } + }, + { + "type": "node", + "id": 7274991667, + "lat": 43.6395539, + "lon": 3.9361599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34090*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275001432, + "lat": 43.6532287, + "lon": 3.9587078, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34327*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275003217, + "lat": 43.6532505, + "lon": 3.9585844, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34327*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275004497, + "lat": 43.6154555, + "lon": 3.9111569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*015", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275004518, + "lat": 43.5751116, + "lon": 3.8311874, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34270*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275032615, + "lat": 43.654722, + "lon": 3.9126636, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34057*006", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275039934, + "lat": 43.5475037, + "lon": 3.9793725, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34926*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7275090396, + "lat": 43.5090395, + "lon": 3.7991523, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34159001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7275105355, + "lat": 43.4507972, + "lon": 3.7569558, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34108001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7276208042, + "lat": 49.9971294, + "lon": 3.3078621, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Charles de Gaulle", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "0097", + "ref:EU:EVSE": "FR*S02*E0205797A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "website": "https://my.freshmile.com/charge/00971" + } + }, + { + "type": "node", + "id": 7276217481, + "lat": 50.0076948, + "lon": 3.6942916, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "name": "0118 - Rue Cyrille", + "network": "freshmilecharge.com", + "opening_hours": "24/7", + "operator": "CITEOS-FRESHMILE", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "FR*S02*E02103118A", + "socket:type1": "2", + "socket:type1:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://my.freshmile.com/charge/01181" + } + }, + { + "type": "node", + "id": 7276217702, + "lat": 50.0167744, + "lon": 3.7864081, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Thèodore Blot", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "0124", + "ref:EU:EVSE": "FR*S02*E02558124A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "https://my.freshmile.com/charge/01241" + } + }, + { + "type": "node", + "id": 7276232615, + "lat": 43.6004861, + "lon": 2.7008223, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34293*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276255304, + "lat": 49.9081428, + "lon": 4.0716627, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "location:description": "Espace Rotonde le Sèmaphore", + "network": "freshmilecharge.com", + "opening_hours": "24/7", + "operator": "CITEOS-FRESHMILE", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "0084", + "ref:EU:EVSE": "FR*S02*E0213484A", + "socket:type1": "2", + "socket:type1:output": "3 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://my.freshmile.com/charge/00841" + } + }, + { + "type": "node", + "id": 7276258677, + "lat": 43.5882044, + "lon": 3.5274823, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34210*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276259899, + "lat": 49.9272627, + "lon": 4.07549, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Avenue Maréchal Joffre", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "0066", + "ref:EU:EVSE": "FR*S02*E0238166A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "https://my.freshmile.com/charge/00662" + } + }, + { + "type": "node", + "id": 7276262322, + "lat": 43.689125, + "lon": 3.1704861, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34038*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276289000, + "lat": 43.4180304, + "lon": 3.3640415, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34325*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276289001, + "lat": 43.4715455, + "lon": 3.2231633, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34147*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276289427, + "lat": 43.5134236, + "lon": 3.6963994, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34165001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7276295866, + "lat": 43.2812278, + "lon": 3.4947389, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34003002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7276298334, + "lat": 43.4617167, + "lon": 3.4245222, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34199*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298487, + "lat": 43.3576552, + "lon": 3.4249912, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34031001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7276298925, + "lat": 48.8733816, + "lon": 2.6888191, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Branly", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "329", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298928, + "lat": 48.89174, + "lon": 2.708153, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "fee": "yes", + "motorcar": "yes", + "name": "Parc des Sports", + "network": "Clem'", + "ref": "331", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298932, + "lat": 48.8475995, + "lon": 2.8239689, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bailly-Romainvilliers Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "409", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298941, + "lat": 48.8810733, + "lon": 2.7041599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Quai Bizeau", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "330", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298943, + "lat": 48.8437745, + "lon": 2.61745, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Noisiel RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "216", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298946, + "lat": 48.8371731, + "lon": 2.7086451, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bussy RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "301", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298949, + "lat": 48.8815973, + "lon": 2.6916362, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pomponne Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "336", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298952, + "lat": 48.8339074, + "lon": 2.6996982, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ZAE Léonard de Vinci", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "307", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298955, + "lat": 48.8259344, + "lon": 2.6776163, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ZAE de Lamirault", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "313", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298958, + "lat": 48.8379929, + "lon": 2.7538171, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "fixme": "Vérifier s'il y a une ou bien deux bornes de recharge", + "motorcar": "yes", + "name": "Jossigny Centre", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "317", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298964, + "lat": 48.9144106, + "lon": 2.7344122, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Base de Loisirs de Jablines", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "337", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298969, + "lat": 48.8991926, + "lon": 2.7061397, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Carnetin - Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "344", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298972, + "lat": 48.8797327, + "lon": 2.7661836, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chessy Centre", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "403", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276298976, + "lat": 48.83925, + "lon": 2.7191856, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lycée Martin Luther King", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "308", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276332960, + "lat": 46.9164535, + "lon": 0.0602538, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B064", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B064", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7276388186, + "lat": 42.6094205, + "lon": 3.0360272, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7276464122, + "lat": 45.8923973, + "lon": 6.1362367, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ANNECY - Parking des Marquisats", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref": "79120", + "ref:EU:EVSE": "FR*S74*P74010*J", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3.7", + "wikimedia_commons": "File:Electric vehicle parking in Annecy.jpg" + } + }, + { + "type": "node", + "id": 7276709840, + "lat": 47.4213013, + "lon": 0.6840029, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ville de Tours" + } + }, + { + "type": "node", + "id": 7277321726, + "lat": 45.9611564, + "lon": 6.0391811, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Balme de Silligny - Supermarché", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "payment:phone_app": "yes", + "payment:rfid_card": "yes", + "ref:EU:EVSE": "FR*S74*P74026*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7277321727, + "lat": 45.9710532, + "lon": 6.0326092, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "position à vérifier", + "motorcar": "yes", + "name": "La Balme de Sillingy - Lac", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74026*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7277321728, + "lat": 45.9216802, + "lon": 6.0640508, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "position à vérifier (dans le parking souterrain)", + "motorcar": "yes", + "name": "POISY - Parking de la Mairie", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74213*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7277465307, + "lat": 44.4602337, + "lon": 6.0547761, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05170*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7277465308, + "lat": 44.4629437, + "lon": 6.0563737, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05170*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7278441707, + "lat": 47.3467546, + "lon": -0.218192, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "operator": "SIÉML", + "socket:typee": "*", + "source": "charging_station" + } + }, + { + "type": "node", + "id": 7278644971, + "lat": 45.4619423, + "lon": 4.4943659, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "E. Leclerc" + } + }, + { + "type": "node", + "id": 7279052406, + "lat": 49.8328342, + "lon": 3.9032463, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref:EU:EVSE": "FR*S02*E02789117A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "website": "https://my.freshmile.com/charge/01171" + } + }, + { + "type": "node", + "id": 7279067985, + "lat": 49.8236646, + "lon": 3.7025137, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "01232", + "ref:EU:EVSE": "FR*S02*E02668123A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://my.freshmile.com/charge/01232" + } + }, + { + "type": "node", + "id": 7279085030, + "lat": 49.8984776, + "lon": 3.6278324, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref": "00211", + "ref:EU:EVSE": "FR*S02*E0236121A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "https://my.freshmile.com/charge/00211" + } + }, + { + "type": "node", + "id": 7279085031, + "lat": 49.8992332, + "lon": 3.6307283, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref:EU:EVSE": "FR*S02*E0236167A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "website": "https://my.freshmile.com/charge/00671" + } + }, + { + "type": "node", + "id": 7279085032, + "lat": 49.9049537, + "lon": 3.6275402, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "parking:fee": "yes", + "payment:app": "yes", + "payment:website": "yes", + "ref:EU:EVSE": "FR*S02*E0236155A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7279962954, + "lat": 48.7255536, + "lon": 2.2812134, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "covered": "limited", + "description": "badge disponible à l'atelier", + "fee": "no", + "motorcar": "yes", + "network": "Renault", + "opening_hours": "24/7", + "operator": "Renault", + "operator:wikidata": "Q6686", + "parking:fee": "no", + "reservation": "no", + "socket:type3c": "2", + "socket:type3c:output": "22 kW" + } + }, + { + "type": "node", + "id": 7282031336, + "lat": 44.6682488, + "lon": 6.2319645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05145*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7282333296, + "lat": 47.3795019, + "lon": 0.6773498, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Modulo" + } + }, + { + "type": "node", + "id": 7283316917, + "lat": 45.1534333, + "lon": 5.72095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "2*7 KW", + "motorcar": "yes", + "name": "EVlink Schneider Electric" + } + }, + { + "type": "node", + "id": 7284306724, + "lat": 43.625148, + "lon": 7.054841, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Wiiiz" + } + }, + { + "type": "node", + "id": 7285202165, + "lat": 45.4948579, + "lon": 4.5260417, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "e-Totem" + } + }, + { + "type": "node", + "id": 7285204126, + "lat": 45.4686596, + "lon": 4.3680953, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 7285302930, + "lat": 46.570549, + "lon": 0.2723431, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B110", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B110", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "website": "https://www.soregies.fr" + } + }, + { + "type": "node", + "id": 7285349132, + "lat": 46.61343, + "lon": 0.3157758, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "manufacturer": "DBT", + "motorcar": "yes", + "name": "Nissan", + "socket:chademo": "1" + } + }, + { + "type": "node", + "id": 7285542873, + "lat": 45.160354, + "lon": 5.7133674, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Renault ZOE" + } + }, + { + "type": "node", + "id": 7285754315, + "lat": 47.0632836, + "lon": 0.0177537, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B052", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B052", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7285754316, + "lat": 47.0712509, + "lon": -0.0436959, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B087", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B087", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7285786892, + "lat": 49.4219089, + "lon": 1.1243454, + "tags": { + "addr:city": "Bonsecours", + "addr:postcode": "76240", + "addr:street": "Rue de la Basilique", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76103*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7287651639, + "lat": 45.1941683, + "lon": 5.70979, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "Station de rechargement hydrogène", + "motorcar": "yes", + "name": "Air Liquide", + "operator": "Hyway" + } + }, + { + "type": "node", + "id": 7287651640, + "lat": 45.1938668, + "lon": 5.7094266, + "tags": { + "amenity": "charging_station", + "amperage": "125 A - DC", + "capacity": "1", + "charging_station:output": "50 kW", + "motorcar": "yes", + "name": "GEG" + } + }, + { + "type": "node", + "id": 7287651641, + "lat": 45.193881, + "lon": 5.7094091, + "tags": { + "amenity": "charging_station", + "amperage": "63 A - AC", + "capacity": "1", + "charging_station:output": "44 kW", + "motorcar": "yes", + "name": "GEG" + } + }, + { + "type": "node", + "id": 7287651684, + "lat": 45.1940615, + "lon": 5.7080975, + "tags": { + "amenity": "charging_station", + "brand": "Schneider Electric", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7287653806, + "lat": 45.1934963, + "lon": 5.7076684, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "name": "Solar eBike charging station and vélomobile" + } + }, + { + "type": "node", + "id": 7287710819, + "lat": 45.1745969, + "lon": 5.7248761, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "CAF Alliés", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*002", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7287878721, + "lat": 48.4128315, + "lon": 1.5995185, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28380*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7288678466, + "lat": 46.7384789, + "lon": 0.7662545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B079", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B079", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7288952581, + "lat": 49.1103005, + "lon": 7.0708423, + "tags": { + "access": "yes", + "addr:city": "Sarreguemines", + "addr:housenumber": "2", + "addr:street": "Rue du Maire Massing", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "operator": "freshmile", + "phone": "+33388688458", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "website": "https://freshmile.com" + } + }, + { + "type": "node", + "id": 7289068019, + "lat": 46.6195954, + "lon": 0.311039, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B067", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B067", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "website": "https://www.soregies.fr" + } + }, + { + "type": "node", + "id": 7289135238, + "lat": 44.2917483, + "lon": 2.5615713, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12133*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291261007, + "lat": 49.1164913, + "lon": -1.0870473, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261008, + "lat": 49.1163713, + "lon": -1.0999606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261009, + "lat": 49.1151316, + "lon": -1.0958763, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261010, + "lat": 49.100515, + "lon": -1.1165597, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261011, + "lat": 49.1193817, + "lon": -1.0881301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261012, + "lat": 49.1114477, + "lon": -1.0691686, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261013, + "lat": 49.1042877, + "lon": -1.0647824, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261014, + "lat": 49.1012503, + "lon": -1.0822406, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Intermarché" + } + }, + { + "type": "node", + "id": 7291261015, + "lat": 49.1168611, + "lon": -1.1135435, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291261016, + "lat": 49.1120948, + "lon": -1.1324687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 7291280719, + "lat": 46.3280633, + "lon": -0.4675849, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79191P0045A", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7291310040, + "lat": 46.318822, + "lon": -0.4882388, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB38069A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291326402, + "lat": 46.1804622, + "lon": -0.4740927, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB45042A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291328135, + "lat": 46.3157895, + "lon": -0.4074483, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB49018A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291328356, + "lat": 46.2219101, + "lon": -0.143779, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P0017A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291328357, + "lat": 46.2223296, + "lon": -0.1450163, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P0017C", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291335960, + "lat": 46.1083394, + "lon": -0.0756706, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79083P0021A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291336165, + "lat": 46.4205964, + "lon": 0.0410336, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B083", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B083", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291343754, + "lat": 46.3603248, + "lon": -0.3735012, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB50103A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291344232, + "lat": 46.3730795, + "lon": -0.5216581, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB47092A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291345951, + "lat": 46.4826112, + "lon": -0.597308, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79101P0012A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291347803, + "lat": 46.220422, + "lon": -0.1457451, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P0029A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291349796, + "lat": 46.3623019, + "lon": -0.2994545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79048P0004A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291352554, + "lat": 46.820546, + "lon": -0.418695, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB12201A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291353290, + "lat": 46.2246696, + "lon": -0.1463298, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P0032A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291353291, + "lat": 46.2241226, + "lon": -0.142239, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79174P0013A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291362523, + "lat": 46.3965368, + "lon": -0.0521514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB53083A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291363799, + "lat": 46.4155862, + "lon": -0.1984859, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79270P0005A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291366505, + "lat": 46.4854939, + "lon": -0.4024433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB02002A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291375590, + "lat": 46.6549098, + "lon": -0.0744907, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB34119A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291382980, + "lat": 46.648833, + "lon": -0.251641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79202P0043A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291386320, + "lat": 46.610536, + "lon": -0.418977, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB28028A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291389922, + "lat": 46.674512, + "lon": -0.148041, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB31019A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291389934, + "lat": 46.6626426, + "lon": -0.2481437, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB33001A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291395404, + "lat": 46.7301605, + "lon": -0.2369101, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB31001A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291400117, + "lat": 46.8225175, + "lon": -0.416728, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB12016A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291404629, + "lat": 46.719493, + "lon": -0.02581, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB32103A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291404819, + "lat": 46.7953175, + "lon": -0.3573704, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB12228B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291596163, + "lat": 46.8395001, + "lon": -0.4735849, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "AlterBase", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB12073A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291615544, + "lat": 46.8792255, + "lon": -0.3269277, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB12002A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291621044, + "lat": 46.8885516, + "lon": -0.2326937, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB26031A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291631904, + "lat": 46.9568671, + "lon": -0.5879232, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB73067A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291632011, + "lat": 46.9851648, + "lon": -0.2109429, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79329P0015A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291646805, + "lat": 46.9509588, + "lon": -0.0829333, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB22026A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291661146, + "lat": 46.981369, + "lon": -0.1979541, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79329P0077A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7291666243, + "lat": 46.8697306, + "lon": 0.2843147, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B096", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B096", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291667528, + "lat": 47.1085209, + "lon": -0.0235998, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B074", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B074", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291684913, + "lat": 46.7572215, + "lon": 0.4849763, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B112", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B112", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291684914, + "lat": 46.761242, + "lon": 0.4882295, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B076", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B076", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291699643, + "lat": 46.7013955, + "lon": 0.1603206, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B049", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B049", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291702536, + "lat": 46.7863752, + "lon": 0.811144, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B128", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B128", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291703270, + "lat": 46.7595956, + "lon": 0.7052954, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B117", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B117", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291710784, + "lat": 46.6187557, + "lon": 0.0766632, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B048", + "network": "ALTERBASE87", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B048", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291711350, + "lat": 46.7276708, + "lon": 0.6549771, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B030", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B030", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291711499, + "lat": 46.6455371, + "lon": 0.2287769, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B032", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B032", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291721366, + "lat": 46.7173598, + "lon": 0.2583347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B127", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B127", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291724432, + "lat": 46.5635052, + "lon": 0.6300505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B025", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B025", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291732634, + "lat": 46.6600308, + "lon": 0.0762132, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B006", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B006", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291735165, + "lat": 46.6611277, + "lon": -0.0036152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B015", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B015", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291747869, + "lat": 46.5766582, + "lon": 0.3056878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B008", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B008", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291754834, + "lat": 46.6073005, + "lon": 0.6026438, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B009", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B009", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291756222, + "lat": 46.610376, + "lon": 0.2298168, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B081", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B081", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291764128, + "lat": 46.570715, + "lon": 0.4652152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B098", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B098", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291783992, + "lat": 46.569029, + "lon": 0.3714247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B000", + "network": "ALTERBASE86", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B000", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291784629, + "lat": 46.556968, + "lon": 0.3765579, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B124", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B124", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291785847, + "lat": 46.4797529, + "lon": 0.3694243, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B051", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B051", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291789969, + "lat": 46.5088997, + "lon": 0.6346145, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B102", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B102", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291789970, + "lat": 46.4784398, + "lon": 0.5232916, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B039", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B039", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291808653, + "lat": 46.4852112, + "lon": 0.3154321, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B044", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B044", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291809450, + "lat": 46.5191, + "lon": 0.332756, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B055", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B055", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291821839, + "lat": 46.4845778, + "lon": 0.1849705, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B037", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B037", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291821842, + "lat": 46.4248008, + "lon": 0.2148568, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B062", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B062", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291823489, + "lat": 46.4399395, + "lon": 0.4239627, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B042", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B042", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291826079, + "lat": 46.3615506, + "lon": 0.6110971, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B011", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B011", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291838396, + "lat": 46.4443166, + "lon": 0.1658266, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B035", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B035", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291841591, + "lat": 46.3072262, + "lon": 0.1827388, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B036", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B036", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7291844932, + "lat": 46.3286695, + "lon": 0.495419, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B119", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B119", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291846391, + "lat": 46.2588703, + "lon": 0.4273294, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B018", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B018", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291857130, + "lat": 46.1174516, + "lon": 0.2333161, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B089", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B089", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291857902, + "lat": 46.2263744, + "lon": 0.4707284, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B045", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B045", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291857940, + "lat": 46.1814133, + "lon": 0.0297881, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB84138A", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291861844, + "lat": 46.4669288, + "lon": 1.0428021, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B047", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B047", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291862744, + "lat": 46.1585302, + "lon": 0.3110932, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B095", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B095", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291862867, + "lat": 46.18983, + "lon": 0.6869947, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B068", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B068", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291869893, + "lat": 46.1429005, + "lon": 0.4069113, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B017", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B017", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291871880, + "lat": 46.1471074, + "lon": 0.296295, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B034", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B034", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291894128, + "lat": 46.551036, + "lon": 0.9212694, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B105", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B105", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7291904807, + "lat": 46.4334587, + "lon": 0.8768953, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "B070", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B070", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7292000131, + "lat": 47.3486182, + "lon": 0.5495924, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7293068201, + "lat": 48.8633093, + "lon": 2.6745648, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ZAE de l'Esplanade", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "326", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068203, + "lat": 48.839043, + "lon": 2.708014, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Conservatoire Bach", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "304", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068208, + "lat": 48.8819344, + "lon": 2.7070962, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de la Gare", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "346", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068212, + "lat": 48.8663823, + "lon": 2.8139704, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Magny le Hongre - Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "410", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068218, + "lat": 48.8308433, + "lon": 2.7241109, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ZAE Gustave Eiffel", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "305", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068221, + "lat": 48.8677118, + "lon": 2.8147002, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Magny le Hongre - Clé des Champs", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "411", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068224, + "lat": 48.8446625, + "lon": 2.7374089, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Collège Claude Monet", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "309", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068227, + "lat": 48.8716738, + "lon": 2.7837137, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "404", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293068234, + "lat": 48.8743865, + "lon": 2.7218721, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Orly Parc", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "318", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7293235668, + "lat": 45.1502249, + "lon": 5.7289279, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7294182445, + "lat": 45.8131238, + "lon": 1.322144, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "note": "22 kVA", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294272886, + "lat": 46.5997025, + "lon": 0.3225918, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7294465740, + "lat": 48.6750919, + "lon": 2.9382506, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bernay-Vilbert", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77031A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465741, + "lat": 48.7132322, + "lon": 3.0334035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Plessis-Feu-Aussoux", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77365A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465742, + "lat": 48.7341825, + "lon": 2.9847662, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pézarches", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77360A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465743, + "lat": 48.7355575, + "lon": 3.0117741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Touquin", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77469A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465744, + "lat": 48.820861, + "lon": 3.136526, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boissy-le-Châtel", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77042A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465745, + "lat": 48.8500773, + "lon": 3.2384443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77385B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465750, + "lat": 48.8484305, + "lon": 3.2331336, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rebais", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77385A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465751, + "lat": 48.8517595, + "lon": 3.4274219, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montdauphin", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77303A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465752, + "lat": 48.8572101, + "lon": 3.3181776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bellot", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77030A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465753, + "lat": 48.8959169, + "lon": 3.2598978, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boitron", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77043A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465758, + "lat": 48.9044427, + "lon": 3.2295336, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Orly-sur-Morin", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77345A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465763, + "lat": 49.0463563, + "lon": 3.0927505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vendrest", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77490A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465768, + "lat": 49.0252255, + "lon": 3.0268781, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lizy-sur-Ourcq", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77257A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465769, + "lat": 48.9787076, + "lon": 3.0216445, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Armentières-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77008A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465770, + "lat": 49.0068948, + "lon": 2.9745382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Congis-sur-Thérouanne", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77126A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465771, + "lat": 48.9734247, + "lon": 2.8375842, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chauconin-Neufmontiers", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77335A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465772, + "lat": 48.9005519, + "lon": 2.6721793, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villevaudé", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77517A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465779, + "lat": 48.7150034, + "lon": 2.7406505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Presles-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77377A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465780, + "lat": 48.7688271, + "lon": 2.8305578, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Neufmoutiers-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77336A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465781, + "lat": 48.8137241, + "lon": 2.8303904, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villeneuve-le-Comte", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77508A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465782, + "lat": 48.822294, + "lon": 2.9579865, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Guérard", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77219A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465783, + "lat": 48.8579124, + "lon": 2.9090389, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Crécy-la-Chapelle - Mairie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77142A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294465784, + "lat": 48.8581113, + "lon": 2.90673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Crécy-la-Chapelle - Champs de Foire", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77142B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482285, + "lat": 48.8625573, + "lon": 2.9914608, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mainsoncelles-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77270A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482293, + "lat": 48.9276745, + "lon": 3.1238007, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Jouarre", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77238A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482294, + "lat": 48.8997222, + "lon": 3.0408156, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pierre-Levée", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77361A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482295, + "lat": 48.8857333, + "lon": 2.961653, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Sancy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77443A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482296, + "lat": 48.9417794, + "lon": 2.9856123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montceaux-les-Meaux", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77300A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482297, + "lat": 48.97101, + "lon": 2.7603113, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Charny", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77095A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482298, + "lat": 48.9398504, + "lon": 2.7442616, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Fresnes-sur-Marne", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77196A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294482299, + "lat": 48.9124876, + "lon": 2.8259562, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Isles-les-Villenoy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77232A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294555020, + "lat": 47.2341479, + "lon": 6.019603, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM3", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref": "BJKS1;BPJU1", + "ref:EU:EVSE": "FR*S25*P02505699", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3" + } + }, + { + "type": "node", + "id": 7294806763, + "lat": 45.0949272, + "lon": 6.0709242, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38191*A", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2020-03-14" + } + }, + { + "type": "node", + "id": 7294869927, + "lat": 45.1815519, + "lon": 5.7764362, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "level": "0", + "motorcar": "yes", + "operator": "DBT" + } + }, + { + "type": "node", + "id": 7294909550, + "lat": 49.2012885, + "lon": 2.5825437, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Ordener", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Syndicat d’Énergie de l’Oise SE60", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PSENLISORD", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909555, + "lat": 49.1665868, + "lon": 2.3602492, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Auchois Dupont", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PBORANSUROISE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909556, + "lat": 49.1778909, + "lon": 2.2855905, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Parc du Thelle", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PTHELLE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909557, + "lat": 49.2236191, + "lon": 2.2870267, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Tiburce Lefèvre", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PNEUILLYENT", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909559, + "lat": 49.2037104, + "lon": 2.3754794, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Gaston Wateau", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PPRECY", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909560, + "lat": 49.2740709, + "lon": 2.5170208, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Piegaro", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PVERNEUILENHA", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909561, + "lat": 49.2911382, + "lon": 2.5000986, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Albert Thomas", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PVILLERSSTPAUL", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909562, + "lat": 49.2520827, + "lon": 2.4828566, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rencontres", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCREILRENC", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909563, + "lat": 49.2161407, + "lon": 2.4183724, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "République", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PSAINTLEU", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294909564, + "lat": 49.2074825, + "lon": 2.3902984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Primevères", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PVILLERS", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912496, + "lat": 49.2753744, + "lon": 2.3584981, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Mairie", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCIRELESMELLO", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912576, + "lat": 49.2888445, + "lon": 2.2010432, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "RN1", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PGENEVIEVE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912579, + "lat": 49.3464136, + "lon": 2.1184058, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Chemin Vert", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PSULPICE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912580, + "lat": 49.3180781, + "lon": 1.9712878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Saint-Michel", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PJOUYSOUSTHELLE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912581, + "lat": 49.4617301, + "lon": 2.1120834, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Salle des fêtes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PTILLE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912582, + "lat": 49.4264375, + "lon": 2.0821018, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Pont de Paris", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "power": "18", + "ref:EU:EVSE": "FR*S60*PBEAUVAISPARIS", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912583, + "lat": 49.4344516, + "lon": 2.0883717, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Parking Verdun", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PBEAUVVERD", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912584, + "lat": 49.4321964, + "lon": 2.0712077, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Saint-Quentin", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Mouv'Oise", + "ref:EU:EVSE": "FR*S60*PYRXMTJ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7294912585, + "lat": 49.4327427, + "lon": 2.078702, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Antoine Loisel", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PBEAUVLOIS", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912586, + "lat": 50.6153883, + "lon": 2.9606261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Hallennes lez Haubourdin - Eglise", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*245*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912587, + "lat": 50.6281532, + "lon": 2.9562596, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Englos - Rue Paul Procureur", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*233*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912612, + "lat": 48.4745675, + "lon": -0.9730004, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Rassemblement du 28 Juillet 1944", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53100*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912613, + "lat": 47.6586427, + "lon": -2.754001, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Général de Gaulle", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*O", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912614, + "lat": 47.6585581, + "lon": -2.730641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Avenue Général Délestraint", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*H", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912615, + "lat": 47.6379133, + "lon": -2.7639672, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Daniel Gilard", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*D", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912616, + "lat": 47.6455461, + "lon": -2.770693, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Avenue Winston Churchill", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912617, + "lat": 47.6515364, + "lon": -2.7881942, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard des Iles", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*J", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912618, + "lat": 47.9878985, + "lon": -2.6849463, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Anne de Bretagne", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56160*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912619, + "lat": 48.0679898, + "lon": -2.7522971, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de Kerentree", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56198*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912620, + "lat": 48.0973057, + "lon": -2.5451879, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Stade", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56257*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294912621, + "lat": 48.0823569, + "lon": -2.2827719, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Rue du 19 Mars 1962", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56127*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7294949225, + "lat": 46.3961787, + "lon": 0.3409072, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref": "B063", + "ref:EU:EVSE": "FR*S86*PSORE*B063", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294949226, + "lat": 46.4444386, + "lon": 0.6650301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B033", + "ref:EU:EVSE": "FR*S86*PSORE*B033", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7294949227, + "lat": 46.5414183, + "lon": 0.4139161, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref": "B066", + "ref:EU:EVSE": "FR*S86*PSORE*B066", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7295159783, + "lat": 45.2022754, + "lon": 5.7046754, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "CEA Cambridge", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*004", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7295159784, + "lat": 45.2022532, + "lon": 5.7047082, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "CEA Cambridge", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*004", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7295164947, + "lat": 45.2051217, + "lon": 5.6993341, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Horowitz", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*010", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7295164948, + "lat": 45.2051401, + "lon": 5.6993589, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Horowitz", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*010", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7295200455, + "lat": 45.1799338, + "lon": 5.695521, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Seyssinet-Pariset Hôtel de Ville", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38485*001", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7295200456, + "lat": 45.1799125, + "lon": 5.6955203, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Seyssinet-Pariset Hôtel de Ville", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38485*001", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7295229970, + "lat": 45.1957168, + "lon": 5.7106359, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Cité Internationale", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*006", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "survey:date": "2022-05-03" + } + }, + { + "type": "node", + "id": 7295242397, + "lat": 45.1918081, + "lon": 5.7130224, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Gare Schuman", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*008", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7295242398, + "lat": 45.1918143, + "lon": 5.7130579, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Gare Schuman", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*008", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7295252474, + "lat": 45.1860166, + "lon": 5.7135789, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Bruno", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*016", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7295252475, + "lat": 45.1859953, + "lon": 5.7135783, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Bruno", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*016", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7295307328, + "lat": 48.0697646, + "lon": 6.8734825, + "tags": { + "access": "customers", + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Le Grand Hôtel & Spa", + "socket:type3": "1", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 7295307329, + "lat": 48.0687788, + "lon": 6.8739197, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Gérardmer - Place du Tilleul", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 7296457808, + "lat": 48.4869329, + "lon": -1.9826581, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7296475774, + "lat": 48.866874, + "lon": 2.7196659, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lycée Van Dongen", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "319", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296475776, + "lat": 48.8690058, + "lon": 2.6889542, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Thibault - Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "328", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296475783, + "lat": 48.8284635, + "lon": 2.679228, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ZAE des Portes de la Forêt", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "314", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530286, + "lat": 48.867128, + "lon": 2.7073577, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Collège des Quatre Arpents", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "320", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530290, + "lat": 48.8562788, + "lon": 2.786163, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Serris - Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "406", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530292, + "lat": 48.8771772, + "lon": 2.7059439, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lagny Centre", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "322", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530295, + "lat": 48.8412859, + "lon": 2.7888784, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Serris - Saria", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "407", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530297, + "lat": 48.8500436, + "lon": 2.6517317, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Torcy Mairie", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "224", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530300, + "lat": 48.8546997, + "lon": 2.7716922, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montévrain RER", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "302", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530306, + "lat": 48.8520927, + "lon": 2.7154496, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Clos Charon", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "316", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530309, + "lat": 48.8665906, + "lon": 2.759058, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Société des Nations", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "323", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296530312, + "lat": 48.8502549, + "lon": 2.7690757, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Hôpital Jossigny", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "ref": "303", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7296553419, + "lat": 45.1844114, + "lon": 5.7039768, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chambre des Métiers", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*005", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7296553420, + "lat": 45.1844164, + "lon": 5.7040107, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chambre des Métiers", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*005", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296554453, + "lat": 45.1900188, + "lon": 5.715654, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Gares Alsace Lorraine", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*009", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296569556, + "lat": 45.1836362, + "lon": 5.7214013, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Bonne", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*003", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296569557, + "lat": 45.1850891, + "lon": 5.719678, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Thiers", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*018", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296603176, + "lat": 45.1889342, + "lon": 5.7238112, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Victor Hugo", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*020", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296603177, + "lat": 45.189406, + "lon": 5.7293812, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Achard", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*001", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296603178, + "lat": 45.1893971, + "lon": 5.7293523, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Achard", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*001", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7296603179, + "lat": 45.1881991, + "lon": 5.7277463, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Vaucanson", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*019", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7296603180, + "lat": 45.1881749, + "lon": 5.7277605, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Vaucanson", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*019", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296626401, + "lat": 45.1854984, + "lon": 5.729574, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Malraux CCI", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*013", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296733702, + "lat": 46.6741836, + "lon": 5.5304162, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "mapillary": "1947425255395912", + "model": "EVlink City", + "motorcar": "yes", + "operator": "ALDI", + "operator:wikidata": "Q125054", + "operator:wikipedia": "en:Aldi", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3.2", + "wikimedia_commons": "File:IRVE EVC1S22P4E4ERF sn=D41939300000020 05.jpg" + } + }, + { + "type": "node", + "id": 7296766185, + "lat": 45.1930399, + "lon": 5.725548, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Stéphane Jay", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*017", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296766186, + "lat": 45.1941447, + "lon": 5.7315078, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Notre-Dame - Musée", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*015", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296766227, + "lat": 45.1879958, + "lon": 5.7382057, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Jean Pain - Stade des Alpes", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "payment:oura": "yes", + "ref:EU:EVSE": "FR*M38*P38185*011", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7296766228, + "lat": 45.1880332, + "lon": 5.7383216, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Jean Pain - Stade des Alpes", + "network": "Grenoble", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grenoble-Alpes Métropole", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M38*P38185*011", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 7296782774, + "lat": 46.6952197, + "lon": 5.5575143, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "manufacturer": "Circontrol", + "model": "Post eVolve Smart T", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Commune de Villeneuve-sous-Pymont", + "operator:type": "public", + "ref": "QQKD1;QQKD2", + "socket:type2": "2", + "socket:type2:output": "22", + "wikimedia_commons": "File:PVS00064013TK0041131 sn=1510-000518 04.jpg" + } + }, + { + "type": "node", + "id": 7297087754, + "lat": 48.4443288, + "lon": 2.8913681, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Valence-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77480A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087755, + "lat": 48.3492702, + "lon": 2.8501033, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montarlot", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77299A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087756, + "lat": 48.3253809, + "lon": 2.8482724, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villecerf", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77501A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087757, + "lat": 48.3427119, + "lon": 2.8958071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Ville-Saint-Jacques", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77516A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087758, + "lat": 48.3121903, + "lon": 2.9226495, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Flagy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77184A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087759, + "lat": 48.3433354, + "lon": 3.0214172, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La-Brosse-Montceaux", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77054A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087760, + "lat": 48.3862677, + "lon": 3.0349966, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Marolles-sur-Seine", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77279A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087761, + "lat": 48.4189863, + "lon": 2.9614039, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Forges", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77194A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087762, + "lat": 48.463518, + "lon": 2.9451846, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Échouboulains", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77164A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087763, + "lat": 48.4699703, + "lon": 2.9985145, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Coutençon", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77140A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087764, + "lat": 48.5119093, + "lon": 2.9717314, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "La Chapelle-Rablais", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77089A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087765, + "lat": 48.537204, + "lon": 3.3540749, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Sourdun", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77459A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087766, + "lat": 48.5668579, + "lon": 3.3247435, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Brice", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77403A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087767, + "lat": 48.5395682, + "lon": 3.2817238, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Poigny", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77368A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087768, + "lat": 48.5140068, + "lon": 3.2465283, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Longueville", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77260A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087769, + "lat": 48.509863, + "lon": 3.2899593, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Soisy-Bouy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77456A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087770, + "lat": 48.4195756, + "lon": 3.0967479, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chatenay-sur-Seine", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77101A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087771, + "lat": 48.3984671, + "lon": 3.1204847, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Gravon", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77212A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087772, + "lat": 48.4393818, + "lon": 3.1653426, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vimpelles", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77524A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087773, + "lat": 48.3988172, + "lon": 3.1467101, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Balloy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77019A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087774, + "lat": 48.3986418, + "lon": 3.188342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bazoches-lès-Bray", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77025A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087775, + "lat": 48.4169358, + "lon": 3.2379322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bray-sur-Seine", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77051A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087776, + "lat": 48.4139155, + "lon": 3.3915957, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Fontaine-Fourches", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77187A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087777, + "lat": 48.455891, + "lon": 3.3761309, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villiers-sur-Seine", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77522A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087778, + "lat": 48.4825868, + "lon": 3.2935359, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Gouaix", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77208A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087779, + "lat": 48.4834204, + "lon": 3.3492939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Hermé", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77227A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297087780, + "lat": 48.5290906, + "lon": 3.3144097, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chalautre-la-Petite", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77073A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7297139546, + "lat": 43.5041681, + "lon": 2.4056866, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81209*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7298706200, + "lat": 43.5618088, + "lon": 3.8478706, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34270*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7298709288, + "lat": 43.5760661, + "lon": 3.8679342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*005", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7298709309, + "lat": 43.5795398, + "lon": 3.9393182, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34198*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7298711479, + "lat": 43.5651624, + "lon": 3.9571453, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34198*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814985, + "lat": 48.6529022, + "lon": 2.6990386, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Soignolles-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77455A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814986, + "lat": 48.6262007, + "lon": 2.6942433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lissy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77253A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814987, + "lat": 48.6263188, + "lon": 2.6652095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Limoges-Fourches", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77252A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814988, + "lat": 48.5803671, + "lon": 2.5653102, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Nandy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77326A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814989, + "lat": 48.5578284, + "lon": 2.5493706, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Seine-Port", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77447A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814990, + "lat": 48.5817277, + "lon": 2.7089063, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "St-Germain-Laxis", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77410A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814991, + "lat": 48.555819, + "lon": 2.9521161, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Fontenailles", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77191A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814992, + "lat": 48.5589246, + "lon": 2.9154205, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Ouen-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77428A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814993, + "lat": 48.5296424, + "lon": 2.8350569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chatillon-la-Borde", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77103A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814994, + "lat": 48.5051569, + "lon": 2.7948197, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Châtelet-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77100A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814995, + "lat": 48.5270397, + "lon": 2.750641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Sivry-Courtry", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77453A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814996, + "lat": 48.5710994, + "lon": 2.6646568, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Voisenon", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77528A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814997, + "lat": 48.5529908, + "lon": 2.6710067, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rubelles", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77394A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814998, + "lat": 48.5110437, + "lon": 2.688477, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Livry-sur-Seine", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77255A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299814999, + "lat": 48.4886785, + "lon": 2.7008472, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chartrettes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77096A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815000, + "lat": 48.526667, + "lon": 2.5883886, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boissise-la-Bertrand", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77039A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815001, + "lat": 48.5254458, + "lon": 2.5705934, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boissise-le-Roi - Centre", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77040A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815002, + "lat": 48.503136, + "lon": 2.5618366, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "2 EUR for 3 HOURS", + "fee": "yes", + "motorcar": "yes", + "name": "Boissise-le-Roi - Orgenoy", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77040B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815003, + "lat": 48.4742396, + "lon": 2.5524591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Perthes-en-Gatinais", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77359A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815004, + "lat": 48.4449414, + "lon": 2.6033823, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Barbizon", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77022A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815005, + "lat": 48.3737917, + "lon": 2.4961035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Noisy-sur-École", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77339A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815006, + "lat": 48.3422379, + "lon": 2.6020923, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Ury", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77477A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815007, + "lat": 48.300028, + "lon": 2.699979, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montcourt-Fromonville", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77302A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815008, + "lat": 48.2832423, + "lon": 2.5979556, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Larchant", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77244A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815009, + "lat": 48.2791098, + "lon": 2.5319853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Amponville", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77003A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815010, + "lat": 48.139334, + "lon": 2.4784171, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Beaumont-du-Gâtinais", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77027A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815011, + "lat": 48.2336238, + "lon": 2.62648, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chatenoy", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77102A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815012, + "lat": 48.230656, + "lon": 2.674363, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Faÿ-les-Nemours", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77178A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299815013, + "lat": 48.1955723, + "lon": 2.6575761, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bougligny", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77045A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924332, + "lat": 49.0645339, + "lon": 2.6030888, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Moussy-le-Neuf", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77322A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924333, + "lat": 49.0338926, + "lon": 2.5817005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mauregard", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77282A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924334, + "lat": 49.0176978, + "lon": 2.5912625, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Mesnil-Amelot", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77291A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924335, + "lat": 49.053848, + "lon": 2.684942, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Dammartin-en-Goële", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77153A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924336, + "lat": 49.0393086, + "lon": 2.8063994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Soupplets", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77437A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924337, + "lat": 49.0092208, + "lon": 2.8289177, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Monthyon", + "network": "Ecocharge77", + "opening_hours": "24/7", + "operator": "Ecocharge77", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77309A", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "voltage": "230" + } + }, + { + "type": "node", + "id": 7299924338, + "lat": 48.9267362, + "lon": 2.8597132, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mareuil-les-Meaux", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77276A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924339, + "lat": 48.8610298, + "lon": 3.3429775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Villeneuve-sur-Bellot", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77512A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924340, + "lat": 48.7910283, + "lon": 3.1247775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chailly-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77070A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924341, + "lat": 48.817729, + "lon": 3.1840649, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chauffry", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77106A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924342, + "lat": 48.7766, + "lon": 3.1634729, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Marolles-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77278A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924343, + "lat": 48.7588231, + "lon": 3.2198794, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Choisy-en-Brie", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77116A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924344, + "lat": 48.7583064, + "lon": 3.048279, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saints", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77433A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924345, + "lat": 48.694653, + "lon": 3.438183, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Montceaux-les-Provins", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77301A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924346, + "lat": 48.6845838, + "lon": 3.2265268, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77036A", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7299924347, + "lat": 48.6780148, + "lon": 3.2428272, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bezalles", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77033A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924348, + "lat": 48.6163799, + "lon": 3.1951084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chenoise", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77109A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924349, + "lat": 48.647745, + "lon": 2.9606541, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Courpalay", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77135A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924350, + "lat": 48.6577509, + "lon": 2.7172912, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Solers", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77457A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924351, + "lat": 48.6606441, + "lon": 2.7726588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Ozouer-le-Voulgis", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77352A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299924352, + "lat": 48.64466, + "lon": 2.8354048, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Verneuil-l'Étang", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77493A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299980002, + "lat": 47.7555501, + "lon": 6.7372334, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07041413", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7299980003, + "lat": 47.6374062, + "lon": 7.5338666, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68286*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7300271375, + "lat": 47.595487, + "lon": 7.5542559, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7301992588, + "lat": 43.301915, + "lon": -1.587514, + "tags": { + "addr:city": "Sare", + "addr:postcode": "64310", + "addr:street": "Quartier Lehenbizkai", + "addr:suburb": "Sare", + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Camping La Petite Rhune", + "phone": "+33 5 59 54 23 97", + "website": "https://www.lapetiterhune.com/" + } + }, + { + "type": "node", + "id": 7301992589, + "lat": 43.26562, + "lon": -1.348557, + "tags": { + "addr:city": "Bidarray", + "addr:postcode": "64780", + "addr:street": "Place de l'Église", + "addr:suburb": "Bidarray", + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Hôtel-Restaurant Barberaenea", + "phone": "+33 5 59 37 74 86", + "website": "http://www.hotel-bidarray.com" + } + }, + { + "type": "node", + "id": 7301992590, + "lat": 43.342542, + "lon": -1.476164, + "tags": { + "addr:city": "Ainhoa", + "addr:postcode": "64250", + "addr:street": "Rue principale", + "addr:suburb": "Ainhoa", + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Office de Tourisme Ainhoa", + "phone": "+33 5 59 29 93 99", + "website": "https://www.terreetcotebasques.com/" + } + }, + { + "type": "node", + "id": 7301992591, + "lat": 43.373371, + "lon": -1.772133, + "tags": { + "addr:city": "Hendaye", + "addr:housenumber": "67", + "addr:postcode": "64700", + "addr:street": "Bis boulevard de la Mer", + "addr:suburb": "Hendaye", + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Office de tourisme de Hendaye", + "phone": "+33 5 59 20 00 34", + "website": "https://www.hendaye-tourisme.fr/" + } + }, + { + "type": "node", + "id": 7301992592, + "lat": 43.3251873, + "lon": -1.6008697, + "tags": { + "addr:city": "Sare", + "addr:postcode": "64310", + "addr:street": "Col de Saint-Ignace", + "addr:suburb": "Sare", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Bosch eBike Power Station", + "motorcar": "no", + "operator": "Train de la Rhune", + "phone": "+33 5 59 54 20 26", + "website": "https://www.rhune.com/fr/" + } + }, + { + "type": "node", + "id": 7302260553, + "lat": 43.178921, + "lon": -1.3403, + "tags": { + "addr:city": "Saint-Étienne-de-Baïgorry", + "addr:postcode": "64430", + "addr:street": "Place de la Mairie", + "addr:suburb": "Saint-Étienne-de-Baïgorry", + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "natural": "tree", + "operator": "Office de tourisme du Pays basque", + "phone": "+33 5 59 37 47 28", + "website": "http://www.pyrenees-basques.com" + } + }, + { + "type": "node", + "id": 7302271646, + "lat": 46.674956, + "lon": 5.5360137, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Circontrol", + "model": "Post eVolve Smart T", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Hyundai", + "operator:wikidata": "Q55931", + "ref": "PAPE1;PAPE2", + "socket:type2": "2", + "socket:type2:output": "22", + "wikimedia_commons": "File:PVS00064013TK0041131 sn=1510-000618 02.jpg" + } + }, + { + "type": "node", + "id": 7302343107, + "lat": 50.6267073, + "lon": 3.1089982, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Bluelib" + } + }, + { + "type": "node", + "id": 7303929533, + "lat": 49.0054806, + "lon": 2.6062176, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929534, + "lat": 49.0054866, + "lon": 2.6061495, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929535, + "lat": 49.0054925, + "lon": 2.6060818, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929536, + "lat": 49.0054986, + "lon": 2.6060128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929537, + "lat": 49.0055046, + "lon": 2.6059438, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929538, + "lat": 49.0055107, + "lon": 2.6058749, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929539, + "lat": 49.0055167, + "lon": 2.6058059, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929540, + "lat": 49.0055228, + "lon": 2.6057369, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929541, + "lat": 49.0055288, + "lon": 2.605668, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7303929542, + "lat": 49.0055349, + "lon": 2.605599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*5*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7304000455, + "lat": 48.7331829, + "lon": 2.0193331, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Lambert-des-Bois - Port Royal", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "12", + "ref:EU:EVSE": "FR*A07*PCCHVC12", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7304000459, + "lat": 48.7265873, + "lon": 2.0495797, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Milon-la-Chapelle - Mairie", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "10", + "ref:EU:EVSE": "FR*A07*PCCHVC10", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7304000462, + "lat": 48.7152066, + "lon": 2.0815013, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Rémy-lès-Chevreuse - Beauplan", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "16", + "ref:EU:EVSE": "FR*A07*PCCHVC16", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7304000465, + "lat": 48.7062169, + "lon": 1.987506, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "Vérifier la position exacte", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "5", + "ref:EU:EVSE": "FR*A07*PCCHVC05", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7304000467, + "lat": 48.6988628, + "lon": 2.0666861, + "tags": { + "addr:city": "Saint-Rémy-lès-Chevreuse", + "addr:housenumber": "5", + "addr:postcode": "78470", + "addr:street": "Rue Ditte", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "482387373076810", + "motorcar": "yes", + "name": "Saint-Rémy-lès-Chevreuse - Beauséjour", + "network": "cchvc.clem.mobi", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref": "14", + "ref:EU:EVSE": "FR*A07*PCCHVC14", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2019-06-30" + } + }, + { + "type": "node", + "id": 7305284739, + "lat": 48.2125541, + "lon": 3.3532635, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89373*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7305284740, + "lat": 48.3401993, + "lon": 3.066705, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89460*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7306251270, + "lat": 49.4392286, + "lon": 1.0882778, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*016", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7306352563, + "lat": 44.3956895, + "lon": -1.1677146, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*1", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7306751764, + "lat": 43.739492, + "lon": 7.400442, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06150*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7306751765, + "lat": 43.7829398, + "lon": 6.5186711, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83020*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7306804740, + "lat": 47.5840234, + "lon": 6.8956739, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "La Jonxion", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090068129", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7306804741, + "lat": 47.508314, + "lon": 6.997974, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Place du champs de foire", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090033137", + "socket:type2": "2", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7306804742, + "lat": 47.489479, + "lon": 6.920039, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Super U", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090009125", + "socket:type2": "2", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7306804762, + "lat": 47.54982, + "lon": 6.431217, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07056139", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7309203658, + "lat": 46.775764, + "lon": 5.5224779, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "fee": "yes", + "image": "https://forums.automobile-propre.com/uploads/monthly_2019_10/20191009_112037.thumb.jpg.1011a0d1d93c71666a531eabd43c49ec.jpg", + "manufacturer": "ABB", + "model": "HP CP500 CJ LD", + "motorcar": "yes", + "name": "IONITY Jura", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4083", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7312909121, + "lat": 49.4315298, + "lon": 1.1034875, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*014", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314535463, + "lat": 48.9248188, + "lon": -0.0737108, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET289", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7314556009, + "lat": 42.6983188, + "lon": 2.8721362, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "bicycle_parking": "ground_slots", + "capacity": "4", + "name": "Station de recharge de vélo électrique", + "opening_hours": "24/7", + "operator": "CD66", + "operator:type": "public", + "operator:wikidata": "Q2994057", + "voltage": "220" + } + }, + { + "type": "node", + "id": 7314613924, + "lat": 43.8469318, + "lon": 6.728566, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*30*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613925, + "lat": 43.77909, + "lon": 6.7310675, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*35*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613926, + "lat": 43.773845, + "lon": 6.703947, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPG", + "ref:EU:EVSE": "FR*A16*P*WIIZ*31*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613927, + "lat": 43.738191, + "lon": 6.625908, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83013*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613941, + "lat": 43.7233283, + "lon": 6.6280044, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83109*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613942, + "lat": 44.063348, + "lon": 7.616321, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06162*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613943, + "lat": 44.002431, + "lon": 7.554498, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06062*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613945, + "lat": 43.9896182, + "lon": 7.5515084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06132*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613955, + "lat": 43.9368252, + "lon": 7.5139285, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne bike-energy", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06023*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613967, + "lat": 43.941508, + "lon": 7.414438, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06086*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314613975, + "lat": 43.8784215, + "lon": 7.4482916, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0010", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7314613976, + "lat": 43.8760953, + "lon": 7.4493702, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06136*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626085, + "lat": 43.833315, + "lon": 7.472565, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06036*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626092, + "lat": 43.806605, + "lon": 7.497872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06035*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626094, + "lat": 43.799141, + "lon": 7.462256, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06113*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626114, + "lat": 43.7906127, + "lon": 7.4920697, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*006", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626115, + "lat": 43.781903, + "lon": 7.513379, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*005", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626116, + "lat": 43.781006, + "lon": 7.494254, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*007", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626117, + "lat": 43.7750637, + "lon": 7.5073408, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626125, + "lat": 43.7750397, + "lon": 7.507355, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*004", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626126, + "lat": 43.773746, + "lon": 7.499757, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*008", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626127, + "lat": 43.7687662, + "lon": 7.4916255, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "Placement à améliorer", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626128, + "lat": 43.776274, + "lon": 7.487925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06083*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626129, + "lat": 43.765323, + "lon": 7.45799, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06104*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626130, + "lat": 43.760134, + "lon": 7.4795065, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06104*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626131, + "lat": 43.7869424, + "lon": 7.4429166, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06067*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626132, + "lat": 43.7518435, + "lon": 7.4382758, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06104*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626146, + "lat": 43.7515689, + "lon": 7.4356073, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06012*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626147, + "lat": 43.744525, + "lon": 7.426915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06012*003", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7314626148, + "lat": 43.738728, + "lon": 7.416627, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06012*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7315467152, + "lat": 45.1261695, + "lon": 1.3022876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*128", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467153, + "lat": 45.514434, + "lon": -1.1261241, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*146", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467154, + "lat": 45.4848269, + "lon": -1.1500132, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*145", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467155, + "lat": 45.5150778, + "lon": -1.1228478, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*147", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467156, + "lat": 44.8874843, + "lon": -0.5651019, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*18", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467157, + "lat": 44.8206294, + "lon": 0.0787215, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*100", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467158, + "lat": 43.887012, + "lon": -0.5021739, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*19", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467159, + "lat": 43.8936368, + "lon": -0.497193, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*20", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467160, + "lat": 43.8818562, + "lon": -0.5193803, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*35", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467161, + "lat": 43.7867841, + "lon": -1.4022327, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*45", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467162, + "lat": 43.3236128, + "lon": -0.3977595, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*73", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467163, + "lat": 43.3245562, + "lon": -0.3920196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*74", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467164, + "lat": 43.4872719, + "lon": -0.7734753, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*93", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467165, + "lat": 43.4728668, + "lon": -0.9301995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*112", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467166, + "lat": 43.3880752, + "lon": -1.4286317, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*63", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467167, + "lat": 43.3536931, + "lon": -1.5495846, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*110", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467168, + "lat": 43.4746215, + "lon": -1.205319, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*20", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467169, + "lat": 43.4872223, + "lon": -1.3868254, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*68", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467170, + "lat": 43.5344677, + "lon": -0.4100963, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*17", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467171, + "lat": 43.2880354, + "lon": -0.35285, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*41", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467172, + "lat": 43.2343865, + "lon": -0.2810419, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*42", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467173, + "lat": 43.4490742, + "lon": -0.1123698, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*72", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467174, + "lat": 43.1847907, + "lon": -0.1132415, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*102", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467175, + "lat": 43.3170327, + "lon": -0.4754913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Artiguelouve - Place de la Mairie", + "network": "MObiVE", + "note": "Type 2 charger", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*15", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467176, + "lat": 43.0002415, + "lon": -0.6009945, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bedous - Rue Gambetta Parking Nord", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*29", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467177, + "lat": 43.3996144, + "lon": -0.4329729, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*125", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467178, + "lat": 43.3460298, + "lon": -1.6184436, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*18", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467179, + "lat": 43.4373672, + "lon": -1.5224071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*9", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467180, + "lat": 43.1783902, + "lon": -0.260869, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*88", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467181, + "lat": 43.46816, + "lon": -1.4209083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*84", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467182, + "lat": 43.3999983, + "lon": -0.9404549, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*116", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467183, + "lat": 43.4119746, + "lon": -0.6169537, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*67", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315467184, + "lat": 43.3607879, + "lon": -1.6988703, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*122", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510085, + "lat": 43.3971106, + "lon": -1.4555302, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*124", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510086, + "lat": 43.4857433, + "lon": -1.3364589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*120", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510087, + "lat": 43.3067382, + "lon": -1.2441138, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*60", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510088, + "lat": 43.3237952, + "lon": -0.7609575, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*87", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510089, + "lat": 43.3461322, + "lon": -0.4787381, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*101", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510090, + "lat": 43.2209718, + "lon": -0.3621371, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*43", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510091, + "lat": 43.3811044, + "lon": -0.8505821, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*66", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510092, + "lat": 43.3870577, + "lon": -1.6580974, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "3893884640688667", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*106", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510093, + "lat": 43.3780554, + "lon": -0.3061004, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*104", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510094, + "lat": 43.4805967, + "lon": -1.5634462, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*33", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510095, + "lat": 43.4764891, + "lon": -1.5659501, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*31", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510096, + "lat": 43.4870092, + "lon": -1.5489918, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*35", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510097, + "lat": 43.2315954, + "lon": -0.3877965, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*54", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510098, + "lat": 43.2226093, + "lon": -0.4784618, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Lasseube - Chemin du Mourou", + "network": "MObiVE", + "note": "Type 2 charger", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*71", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510099, + "lat": 43.4958815, + "lon": -1.4726347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*25", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510100, + "lat": 43.4917068, + "lon": -1.4704125, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*28", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7315510101, + "lat": 43.3608328, + "lon": -1.4005476, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*46", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7316251372, + "lat": 50.775916, + "lon": 3.0436127, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Warneton - Route de Quesnoy", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*231*1*_*_" + } + }, + { + "type": "node", + "id": 7316254403, + "lat": 50.7710339, + "lon": 3.0769365, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Bousbecque - Parc", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*263*1*_*_" + } + }, + { + "type": "node", + "id": 7316371964, + "lat": 50.7117823, + "lon": 2.9322484, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "186527240033949", + "motorcar": "yes", + "name": "Frelinghien - Parking Mairie", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*230*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017-10-03" + } + }, + { + "type": "node", + "id": 7316379918, + "lat": 50.7351411, + "lon": 2.9454009, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "708698209947079", + "motorcar": "yes", + "name": "Deûlémont - Parking Mairie", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*229*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-07-27" + } + }, + { + "type": "node", + "id": 7316393674, + "lat": 50.6779674, + "lon": 2.8455472, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Erquinghem-Lys", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*300*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7316395840, + "lat": 50.5355302, + "lon": 2.842426, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Salomé - Mairie", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*249*1*_*_" + } + }, + { + "type": "node", + "id": 7316400737, + "lat": 50.6456148, + "lon": 2.8773399, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bois Grenier - Complexe sportif", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*305*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7316428912, + "lat": 50.560997, + "lon": 2.8311786, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Illies - Mairie", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*248*1*_*_" + } + }, + { + "type": "node", + "id": 7316446459, + "lat": 50.5574093, + "lon": 2.8667693, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Marquillies - Mairie", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*252*1*_*_" + } + }, + { + "type": "node", + "id": 7316457479, + "lat": 50.6063083, + "lon": 2.8540363, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Fromelles - Rue de Verdun", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*298*1*_*_" + } + }, + { + "type": "node", + "id": 7316471642, + "lat": 50.5766982, + "lon": 2.853816, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "346372433493225", + "motorcar": "yes", + "name": "Herlies - Mairie", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*257*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "Opendata MEL", + "survey:date": "2017-09-22" + } + }, + { + "type": "node", + "id": 7316492683, + "lat": 50.5835975, + "lon": 2.8877424, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Fournes en Weppes", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*247*1*_*_" + } + }, + { + "type": "node", + "id": 7316514772, + "lat": 50.5330294, + "lon": 2.8667868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Hantay – Église", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*256*1*_*_" + } + }, + { + "type": "node", + "id": 7316521290, + "lat": 50.5479485, + "lon": 2.9207466, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Don - Mairie", + "network": "Pass pass électrique", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*255*1*_*_" + } + }, + { + "type": "node", + "id": 7317206679, + "lat": 46.9224243, + "lon": 6.3425841, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02520454", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7318002522, + "lat": 43.8935803, + "lon": 3.857623, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30200*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7318165105, + "lat": 47.2826426, + "lon": -2.4322147, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44135A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7320239311, + "lat": 43.9418761, + "lon": 3.951663, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30311*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7322360684, + "lat": 44.392293, + "lon": 2.601274, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "colour": "orange", + "manufacturer": "Lafon Technologies", + "model": "PULSE 22 GL", + "network": "Charge Pulse", + "owner": "E. Leclerc", + "parking:fee": "no", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "source": "survey 2020;mapillary" + } + }, + { + "type": "node", + "id": 7335297939, + "lat": 47.4811223, + "lon": -2.3440192, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56058*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7335459342, + "lat": 45.4330586, + "lon": 4.3222764, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "ROCHE LA MOLIÈRE", + "ref:EU:EVSE": "FRS42P42189A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7336754813, + "lat": 50.5718949, + "lon": 2.3786931, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Rely", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4089", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7336754814, + "lat": 50.5718749, + "lon": 2.3787296, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Rely", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4089", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7336754815, + "lat": 50.5718514, + "lon": 2.378758, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Rely", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4089", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7336754816, + "lat": 50.5718289, + "lon": 2.3787919, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Rely", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4089", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7336754817, + "lat": 50.5718097, + "lon": 2.3788284, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Rely", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4089", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7338848873, + "lat": 49.9794913, + "lon": 1.2583687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*53*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7338848874, + "lat": 50.006188, + "lon": 1.4367574, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*34*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7338848875, + "lat": 50.0329853, + "lon": 1.3161701, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*52*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7340052085, + "lat": 50.576415, + "lon": 3.080624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "472019947416137", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*234*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017-09-25" + } + }, + { + "type": "node", + "id": 7340052485, + "lat": 50.648277, + "lon": 3.22222, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "518108706215817", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*240*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-08-17" + } + }, + { + "type": "node", + "id": 7340053985, + "lat": 50.608525, + "lon": 3.208113, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "955796631839067", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*260*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-08-22" + } + }, + { + "type": "node", + "id": 7340162785, + "lat": 50.660399, + "lon": 3.228508, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "500798964597528", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*307*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-08-17" + } + }, + { + "type": "node", + "id": 7340162786, + "lat": 50.6367035, + "lon": 3.1898865, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "Nxw6AThmud4GJbjB12yKPg", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*M59*P59247*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7340177085, + "lat": 50.645086, + "lon": 2.965627, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "435683164167394", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*243*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017-09-21" + } + }, + { + "type": "node", + "id": 7340184285, + "lat": 50.615109, + "lon": 3.240012, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "385032989451930", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*242*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-08-22" + } + }, + { + "type": "node", + "id": 7340184286, + "lat": 50.6062373, + "lon": 3.1903118, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "1064979707363798", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*251*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-08-21" + } + }, + { + "type": "node", + "id": 7340184585, + "lat": 50.622205, + "lon": 2.931303, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "815350892732066", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*246*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017-09-21" + } + }, + { + "type": "node", + "id": 7340191685, + "lat": 50.666526, + "lon": 3.211096, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "504883860548990", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*262*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018-08-16" + } + }, + { + "type": "node", + "id": 7340196685, + "lat": 50.571841, + "lon": 3.054466, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "521164819066105", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*235*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2017-09-23" + } + }, + { + "type": "node", + "id": 7340402692, + "lat": 49.9434368, + "lon": 1.2646505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*54*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7340959930, + "lat": 48.7419333, + "lon": 2.3501478, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Schneider Electric" + } + }, + { + "type": "node", + "id": 7341597373, + "lat": 48.9436285, + "lon": 2.3338442, + "tags": { + "access": "private", + "amenity": "charging_station", + "motorcycle": "yes", + "source": "Bing" + } + }, + { + "type": "node", + "id": 7342982943, + "lat": 49.9550561, + "lon": 1.226128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*91*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7344115696, + "lat": 48.7435373, + "lon": 2.5044553, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "2" + } + }, + { + "type": "node", + "id": 7344115697, + "lat": 48.7435594, + "lon": 2.5044325, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "3" + } + }, + { + "type": "node", + "id": 7344115698, + "lat": 48.7435811, + "lon": 2.5044077, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "4" + } + }, + { + "type": "node", + "id": 7344115699, + "lat": 48.7436218, + "lon": 2.5043608, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "5" + } + }, + { + "type": "node", + "id": 7344115700, + "lat": 48.743639, + "lon": 2.5043373, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "6" + } + }, + { + "type": "node", + "id": 7344115701, + "lat": 48.743501, + "lon": 2.5044969, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "1" + } + }, + { + "type": "node", + "id": 7344135717, + "lat": 48.841553, + "lon": 2.6585083, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7344135718, + "lat": 48.8415623, + "lon": 2.6584587, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7344149581, + "lat": 48.8473393, + "lon": 2.3777723, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "5", + "ref:EU:EVSE": "FR*W75*PVP*0092", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7344149582, + "lat": 48.8473733, + "lon": 2.3777213, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "6", + "ref:EU:EVSE": "FR*W75*PVP*0092", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7344149583, + "lat": 48.8474717, + "lon": 2.3775537, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "1", + "ref:EU:EVSE": "FR*W75*PVP*0092", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7344149584, + "lat": 48.8474977, + "lon": 2.3775121, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "2", + "ref:EU:EVSE": "FR*W75*PVP*0092", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7344152185, + "lat": 48.8485612, + "lon": 2.4333744, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "7" + } + }, + { + "type": "node", + "id": 7344152186, + "lat": 48.8485642, + "lon": 2.4333161, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "6" + } + }, + { + "type": "node", + "id": 7344152187, + "lat": 48.8485717, + "lon": 2.4332128, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "5" + } + }, + { + "type": "node", + "id": 7344152188, + "lat": 48.8485775, + "lon": 2.4331424, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "4" + } + }, + { + "type": "node", + "id": 7344152189, + "lat": 48.8485801, + "lon": 2.4330814, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "3" + } + }, + { + "type": "node", + "id": 7344152190, + "lat": 48.8485845, + "lon": 2.4330164, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "2" + } + }, + { + "type": "node", + "id": 7344152191, + "lat": 48.8485867, + "lon": 2.4329668, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "E-totem", + "capacity": "1", + "motorcar": "yes", + "network": "Métropolis", + "operator": "Métropolis", + "ref": "1" + } + }, + { + "type": "node", + "id": 7344163985, + "lat": 48.8475242, + "lon": 2.3774658, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "3", + "ref:EU:EVSE": "FR*W75*PVP*0092", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7344163986, + "lat": 48.8475537, + "lon": 2.3774162, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref": "4", + "ref:EU:EVSE": "FR*W75*PVP*0092", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7344185296, + "lat": 49.0490744, + "lon": -1.5986261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "e-charge50", + "operator": "SDEM 50", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7344216506, + "lat": 49.3607735, + "lon": 0.8610159, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7344400508, + "lat": 49.9410923, + "lon": 1.1908396, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*56*_*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7345465054, + "lat": 47.0456398, + "lon": -0.3534839, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB17024A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7345902835, + "lat": 47.5205872, + "lon": -3.1318975, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56234*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7346393431, + "lat": 46.3335849, + "lon": -0.4085955, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "free": "no", + "name": "Borne de recharge - Castorama Niort", + "opening_hours": "08:00" + } + }, + { + "type": "node", + "id": 7346393432, + "lat": 46.3335982, + "lon": -0.4086302, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "free": "no", + "name": "Borne de recharge - Castorama Niort" + } + }, + { + "type": "node", + "id": 7347822322, + "lat": 48.7096736, + "lon": 2.1637101, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_type": "fast", + "fee": "yes", + "name": "Joliot-Curie - Ouest", + "note:location": "Parking de l'école", + "opening_hours": "00:00-24:00", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "001", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7349663432, + "lat": 43.7284112, + "lon": 5.1774879, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "kiwhipass", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13053*001", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7349663433, + "lat": 43.728391, + "lon": 5.1774968, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "kiwhipass", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13053*001", + "socket:type3c": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7349923947, + "lat": 43.7196146, + "lon": 5.2467165, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "kiwhipass", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13024*001", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7349923948, + "lat": 43.7195945, + "lon": 5.246723, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "kiwhipass", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13024*001", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7350889492, + "lat": 50.61681, + "lon": 3.193225, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*250*1*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7350889493, + "lat": 50.5889885, + "lon": 3.1673129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*261*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889494, + "lat": 50.5965037, + "lon": 3.2044913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*232*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889495, + "lat": 50.5605804, + "lon": 3.1336322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*254*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889496, + "lat": 50.6102454, + "lon": 3.1151072, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*253*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889497, + "lat": 50.6814068, + "lon": 2.9952643, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*303*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889498, + "lat": 50.670213, + "lon": 2.989537, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*258*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889499, + "lat": 50.624002, + "lon": 2.985088, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*306*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889500, + "lat": 50.5934023, + "lon": 3.000249, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*237*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889501, + "lat": 50.5762134, + "lon": 3.0177455, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*304*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889502, + "lat": 50.5615745, + "lon": 3.0001312, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*236*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889503, + "lat": 50.65543, + "lon": 2.951881, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*259*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889504, + "lat": 50.635844, + "lon": 2.942131, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*244*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889505, + "lat": 50.615185, + "lon": 2.92845, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*302*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889506, + "lat": 50.621906, + "lon": 2.905382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*301*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7350889507, + "lat": 50.6042918, + "lon": 2.9162356, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*SOD*S*NPDC*297*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7351021491, + "lat": 50.573089, + "lon": 2.377188, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*E408900", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7351764805, + "lat": 46.099593, + "lon": 3.4435138, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "source": "survey", + "start_date": "2016", + "survey:date": "2021-10-30", + "wikimedia_commons": "File:Borne de charge véhicules électriques (Abrest) 2021-10-30.JPG" + } + }, + { + "type": "node", + "id": 7352397291, + "lat": 48.2644307, + "lon": 2.7217312, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Darvault", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4081", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397292, + "lat": 48.2645033, + "lon": 2.7216733, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Darvault", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4081", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397293, + "lat": 48.2644439, + "lon": 2.7217535, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Darvault", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4081", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397294, + "lat": 48.2645136, + "lon": 2.7216954, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Darvault", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*P4081", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397295, + "lat": 48.2637731, + "lon": 2.7208458, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Nemours", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*E408600", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397296, + "lat": 48.2637842, + "lon": 2.7208181, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Nemours", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*E408600", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397297, + "lat": 48.2638449, + "lon": 2.7207706, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Nemours", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*E408600", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352397298, + "lat": 48.2638347, + "lon": 2.720798, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Nemours", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "ref:EU:EVSE": "FR*ION*E408600", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7352466683, + "lat": 48.673929, + "lon": 1.4605225, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28415*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7352604857, + "lat": 44.5150623, + "lon": 4.7807544, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Montelimar Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4036", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7352604858, + "lat": 44.5150788, + "lon": 4.7808044, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Montelimar Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4036", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7352604859, + "lat": 44.5150944, + "lon": 4.7808517, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Montelimar Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*P4036", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7352610334, + "lat": 44.5138059, + "lon": 4.7813358, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Montelimar Est", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7354298994, + "lat": 47.10678, + "lon": 6.14709, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02543497", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7354332961, + "lat": 47.2273969, + "lon": 5.9637098, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02505694", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7354332963, + "lat": 47.2349357, + "lon": 6.0210797, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02505629", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7354332964, + "lat": 47.23496, + "lon": 6.02517, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02505630", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7354332965, + "lat": 47.23923, + "lon": 6.03128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02505628", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7354704920, + "lat": 47.2752211, + "lon": -2.4335345, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44135B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7354757789, + "lat": 47.482992, + "lon": -2.159951, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44098A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7355050477, + "lat": 49.2894568, + "lon": -1.5463607, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7355123952, + "lat": 43.5653927, + "lon": 2.5648255, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81014*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7355753462, + "lat": 44.836812, + "lon": -0.5813031, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "Freshmile", + "capacity": "2", + "manufacturer": "EVTronic", + "model": "Oazis", + "ref": "KANG1;KANG2", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7356783124, + "lat": 47.477271, + "lon": -1.767038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44015B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7356783125, + "lat": 47.472946, + "lon": -1.761649, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44015C", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7358176845, + "lat": 48.7123915, + "lon": 2.3631171, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SMOYS", + "payment:contactless": "yes" + } + }, + { + "type": "node", + "id": 7359586751, + "lat": 50.347195, + "lon": 3.5359942, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59383*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7360307470, + "lat": 49.6391388, + "lon": -1.6050081, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "e-charge50" + } + }, + { + "type": "node", + "id": 7360307471, + "lat": 49.6392363, + "lon": -1.6131942, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "e-charge50" + } + }, + { + "type": "node", + "id": 7363347394, + "lat": 46.7715521, + "lon": 6.2756942, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "SIEL" + } + }, + { + "type": "node", + "id": 7365280020, + "lat": 47.3292794, + "lon": -1.6213747, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44209A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7365336715, + "lat": 47.3424517, + "lon": -1.5303741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44201B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7365410025, + "lat": 47.270324, + "lon": -2.345177, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44132A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7365410026, + "lat": 47.259812, + "lon": -2.340087, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44132C", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7365426194, + "lat": 47.5749741, + "lon": -1.621826, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44113B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7366292147, + "lat": 48.6891027, + "lon": 2.3756874, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "ref:EU:EVSE": "FR*SOD*S*SMOY*61*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7367645997, + "lat": 47.127457, + "lon": -2.122795, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44131C", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7367784956, + "lat": 47.380213, + "lon": -1.644031, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44073C", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7367784957, + "lat": 47.412831, + "lon": -1.651239, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44073B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7369286516, + "lat": 50.5833832, + "lon": 3.0898503, + "tags": { + "access": "customers", + "addr:city": "Lesquin", + "addr:country": "FR", + "addr:housenumber": "55", + "addr:postcode": "59810", + "addr:street": "Route de Douai", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "authentication:none": "yes", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "2", + "charge": "0,67 EUR/kWh", + "email": "hello@powerdot.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Lille Supercharger", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "owner": "Power Dot France", + "parking:fee": "no", + "payment:credit_cards": "no", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*PD1*PNOVLSQ", + "short_name": "Tesla", + "socket:tesla_supercharger": "16", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "150 kW", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "truck": "no", + "website": "https://www.tesla.com/findus/location/supercharger/lillesupercharger" + } + }, + { + "type": "node", + "id": 7370258978, + "lat": 48.8060875, + "lon": 2.0682579, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V04*P78545*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7371503074, + "lat": 45.1505626, + "lon": 5.7376226, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "name": "EVlink" + } + }, + { + "type": "node", + "id": 7379362684, + "lat": 48.9759637, + "lon": -0.0798176, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET224", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7379480368, + "lat": 45.8485957, + "lon": 5.8075753, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "motorcar": "no", + "motorcycle": "no", + "name": "Ecoload", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 7386130729, + "lat": 47.0246323, + "lon": 0.7880456, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7386151704, + "lat": 43.2662859, + "lon": -0.1892238, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*118", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7388899710, + "lat": 43.3980872, + "lon": 1.294756, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7391906718, + "lat": 43.4300965, + "lon": 1.2218, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "name": "ChargePoint" + } + }, + { + "type": "node", + "id": 7391993908, + "lat": 43.3219221, + "lon": 1.1765035, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "2", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "operator:wikipedia": "en:ChargePoint" + } + }, + { + "type": "node", + "id": 7392441760, + "lat": 47.5894286, + "lon": 1.3340502, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-8", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7392521135, + "lat": 45.2920563, + "lon": 6.3572316, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "manufacturer": "Lafon Technologies", + "operator": "Bricomarché", + "socket:type2:output": "22 kW", + "socket:typee:output": "3 kW", + "source": "survey", + "voltage": "400" + } + }, + { + "type": "node", + "id": 7392540138, + "lat": 45.2027475, + "lon": 6.6708712, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "manufacturer": "Atomelec", + "operator": "Maurienne", + "socket:type2:output": "22 kW", + "survey:date": "2022-08-19" + } + }, + { + "type": "node", + "id": 7395976107, + "lat": 43.3425635, + "lon": 3.2129849, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34032*003", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7398560136, + "lat": 48.6054574, + "lon": 2.2990588, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "ref:EU:EVSE": "FR*SOD*S*SMOY*80*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7411996776, + "lat": 47.3869764, + "lon": -1.0321301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44213A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7416119058, + "lat": 47.6012875, + "lon": 1.3432874, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-9", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7417188515, + "lat": 48.7029193, + "lon": 2.0693541, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fixme": "détails", + "operator": "EVBox", + "operator:wikidata": "Q28406392", + "operator:wikipedia": "en:EVBox" + } + }, + { + "type": "node", + "id": 7418682252, + "lat": 48.3996724, + "lon": -0.0986823, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53246*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7418937239, + "lat": 48.9949981, + "lon": 2.2668073, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBYD", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBYD1" + } + }, + { + "type": "node", + "id": 7418937240, + "lat": 48.9849597, + "lon": 2.2568408, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JFWG", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JFWG1" + } + }, + { + "type": "node", + "id": 7418937241, + "lat": 48.9895488, + "lon": 2.2572023, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JMLC", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JMLC2" + } + }, + { + "type": "node", + "id": 7419064493, + "lat": 47.40713, + "lon": 5.81502, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07028223", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419064511, + "lat": 47.27346, + "lon": 5.829102, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02548281", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419064512, + "lat": 47.291055, + "lon": 5.773225, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07033442", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419064513, + "lat": 47.454595, + "lon": 5.588897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07002664", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419064514, + "lat": 47.44886, + "lon": 5.5880307, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07027924", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419064516, + "lat": 47.0307736, + "lon": 5.107394, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "mapillary": "207571581011235", + "motorcar": "yes", + "name": "IONITY Bois Guillerot", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7419240985, + "lat": 47.9329297, + "lon": 1.9109028, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "0w2CeK4lhAkE_RM72xIjng", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45147*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419427991, + "lat": 47.9118998, + "lon": 1.969986, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "T94O7frM0x6sXUpgvV_ytg", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45284*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419442058, + "lat": 47.950784, + "lon": 1.8738569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45302*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419473689, + "lat": 47.8775847, + "lon": 1.9549155, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45274*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419478478, + "lat": 47.8847306, + "lon": 1.8737704, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45298*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419480712, + "lat": 47.8324308, + "lon": 1.9678183, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45272*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419533804, + "lat": 47.9013494, + "lon": 1.9104303, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419541277, + "lat": 47.8925206, + "lon": 1.8962186, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45234*008", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419545291, + "lat": 47.8986389, + "lon": 1.90903, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419553121, + "lat": 47.9070282, + "lon": 1.9006824, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419561177, + "lat": 47.9029238, + "lon": 1.9098122, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419569861, + "lat": 47.9009081, + "lon": 1.9002805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419576565, + "lat": 47.9115022, + "lon": 1.8774218, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45285*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7419740143, + "lat": 47.9134122, + "lon": 1.9241896, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419747873, + "lat": 47.9230239, + "lon": 1.92994, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419756277, + "lat": 47.9159547, + "lon": 1.8973301, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419760899, + "lat": 47.9173183, + "lon": 1.9011103, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419769939, + "lat": 47.9286684, + "lon": 1.8970072, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419801132, + "lat": 47.9278477, + "lon": 1.9004091, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419810640, + "lat": 47.9325722, + "lon": 1.8970025, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419837661, + "lat": 47.9368949, + "lon": 1.8911828, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7419837808, + "lat": 47.9355739, + "lon": 1.8942145, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7422372553, + "lat": 49.1404464, + "lon": 1.1201314, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref:EU:EVSE": "FR*S27*PHONDOUVILLE*MOULIN", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7422382290, + "lat": 45.8756724, + "lon": 6.0696997, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Fontanelles", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7422382291, + "lat": 45.8756835, + "lon": 6.0696963, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Fontanelles", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7422382292, + "lat": 45.8756336, + "lon": 6.0696164, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Fontanelles", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:card": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "start_date": "2019" + } + }, + { + "type": "node", + "id": 7428828444, + "lat": 44.1017938, + "lon": 3.8839227, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "mapillary": "299565155002333", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30269*001", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:type3": "2", + "socket:type3:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7428877237, + "lat": 44.4741999, + "lon": 2.227464, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12148*001", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2018" + } + }, + { + "type": "node", + "id": 7429696465, + "lat": 48.5675332, + "lon": -3.7017281, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29AAAK", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7430307500, + "lat": 49.0814461, + "lon": 6.10112, + "tags": { + "amenity": "charging_station", + "colour": "black", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307501, + "lat": 49.0814476, + "lon": 6.1011531, + "tags": { + "amenity": "charging_station", + "colour": "black", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307502, + "lat": 49.0814491, + "lon": 6.1011862, + "tags": { + "amenity": "charging_station", + "colour": "black", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307503, + "lat": 49.0814505, + "lon": 6.1012193, + "tags": { + "amenity": "charging_station", + "colour": "green", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307504, + "lat": 49.081452, + "lon": 6.1012525, + "tags": { + "amenity": "charging_station", + "colour": "green", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307505, + "lat": 49.0814534, + "lon": 6.1012856, + "tags": { + "amenity": "charging_station", + "colour": "blue", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307506, + "lat": 49.0814549, + "lon": 6.1013187, + "tags": { + "amenity": "charging_station", + "colour": "green", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307507, + "lat": 49.0814563, + "lon": 6.1013518, + "tags": { + "amenity": "charging_station", + "colour": "green", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307508, + "lat": 49.0814578, + "lon": 6.1013849, + "tags": { + "amenity": "charging_station", + "colour": "green", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7430307513, + "lat": 49.0814593, + "lon": 6.1014181, + "tags": { + "amenity": "charging_station", + "colour": "green", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7431160082, + "lat": 46.9063676, + "lon": -1.4521534, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85150*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7431225278, + "lat": 46.9406719, + "lon": -1.5099633, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85190*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7431227523, + "lat": 46.1150607, + "lon": 0.5731018, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B080", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7431249982, + "lat": 46.1727019, + "lon": 0.5166083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B065", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7431276829, + "lat": 46.4313925, + "lon": 0.8801103, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B071", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7434658023, + "lat": 46.1085429, + "lon": 3.3118388, + "tags": { + "amenity": "charging_station", + "source": "survey", + "survey:date": "2019" + } + }, + { + "type": "node", + "id": 7435232517, + "lat": 45.9889096, + "lon": 4.7428966, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "motorcar": "yes", + "operator": "L’Eau Vive" + } + }, + { + "type": "node", + "id": 7437699518, + "lat": 43.4440598, + "lon": 6.7063744, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Grand Esterel", + "network": "Plus de Bornes", + "opening_hours": "24/7", + "operator": "Plus de Bornes", + "owner": "Plus de Bornes", + "ref:EU:EVSE": "FR*09*PPDB*0004", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7438413042, + "lat": 49.4623689, + "lon": 1.0784083, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76151*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7445095568, + "lat": 48.7997696, + "lon": 2.1535309, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*VAUBAN", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095569, + "lat": 48.7997261, + "lon": 2.1535394, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*VAUBAN", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095570, + "lat": 48.8067341, + "lon": 2.1519893, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*MONTREUIL", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095571, + "lat": 48.8067387, + "lon": 2.1519091, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*MONTREUIL", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095972, + "lat": 48.8387148, + "lon": 2.187206, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Garches", + "ref:EU:EVSE": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095973, + "lat": 48.8386963, + "lon": 2.1871684, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Garches", + "ref:EU:EVSE": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095974, + "lat": 48.8386292, + "lon": 2.18697, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Garches", + "ref:EU:EVSE": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095975, + "lat": 48.8386478, + "lon": 2.1870196, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Garches", + "ref:EU:EVSE": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445095976, + "lat": 48.8386619, + "lon": 2.1870679, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Garches", + "ref:EU:EVSE": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118006, + "lat": 48.8008073, + "lon": 2.1290483, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*MAIRIE", + "socket:type2": "1", + "website": "http://www.e55c.com" + } + }, + { + "type": "node", + "id": 7445118007, + "lat": 48.7966918, + "lon": 2.1364888, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*CHANTIERS", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118008, + "lat": 48.7967301, + "lon": 2.1364114, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Versailles", + "ref:EU:EVSE": "FR*55C*P78000*VER*CHANTIERS", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118380, + "lat": 48.8275149, + "lon": 2.267691, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*GALLIENI", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118381, + "lat": 48.827495, + "lon": 2.2676978, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*GALLIENI", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118382, + "lat": 48.8274681, + "lon": 2.2677045, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*GALLIENI", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118383, + "lat": 48.827446, + "lon": 2.2677051, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*GALLIENI", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445118384, + "lat": 48.8274244, + "lon": 2.2677071, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*GALLIENI", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445133339, + "lat": 48.7825097, + "lon": 2.190234, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Vélizy", + "ref:EU:EVSE": "FR*55C*P78140*VLZ*TARRON", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171785, + "lat": 48.8274009, + "lon": 2.2677124, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*GALLIENI", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171786, + "lat": 48.8226272, + "lon": 2.2499566, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*ILES", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171787, + "lat": 48.8227147, + "lon": 2.2499113, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*ILES", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171788, + "lat": 48.8226689, + "lon": 2.2499347, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*ILES", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171789, + "lat": 48.8225811, + "lon": 2.2499776, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*ILES", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171790, + "lat": 48.8227953, + "lon": 2.249871, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*ILES", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445171791, + "lat": 48.8227568, + "lon": 2.2498899, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville d'Issy-les-Moulineaux", + "ref:EU:EVSE": "FR*55C*P92130*ISS*ILES", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445180116, + "lat": 48.8167801, + "lon": 2.4667197, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Joinville-le-Pont", + "ref:EU:EVSE": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 7445180117, + "lat": 48.8168913, + "lon": 2.4669081, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Joinville-le-Pont", + "ref:EU:EVSE": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 7445180118, + "lat": 48.8168626, + "lon": 2.4668645, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Joinville-le-Pont", + "ref:EU:EVSE": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 7445180119, + "lat": 48.8168458, + "lon": 2.4668337, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Joinville-le-Pont", + "ref:EU:EVSE": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 7445180120, + "lat": 48.8168247, + "lon": 2.4668015, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Joinville-le-Pont", + "ref:EU:EVSE": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 7445180121, + "lat": 48.8168107, + "lon": 2.4667737, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Joinville-le-Pont", + "ref:EU:EVSE": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 7445180122, + "lat": 48.9216872, + "lon": 2.4456979, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Drancy", + "ref:EU:EVSE": "FR*55C*P93700*DRY*BERTHELOT", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7445180123, + "lat": 48.9216453, + "lon": 2.4457057, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Electric 55 Charging", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Drancy", + "ref:EU:EVSE": "FR*55C*P93700*DRY*BERTHELOT", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7447484303, + "lat": 50.4026633, + "lon": 3.6690621, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59484*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7447752899, + "lat": 43.7047871, + "lon": 5.206213, + "tags": { + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "not:brand:wikidata": "Q17089620", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 7448696509, + "lat": 48.9911339, + "lon": 2.2613808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JPRJ", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JPRJ2" + } + }, + { + "type": "node", + "id": 7448696510, + "lat": 48.9852899, + "lon": 2.2632092, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "FULR", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/FULR1" + } + }, + { + "type": "node", + "id": 7449035930, + "lat": 47.9285841, + "lon": 1.926161, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "manufacturer": "EVBox", + "mapillary": "3538003116299498", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "ref": "JVE-ICR 001", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7450396955, + "lat": 47.4871353, + "lon": 0.9486062, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "Modulo", + "owner": "SIEIL37", + "socket:type2": "2", + "socket:type2:output": "18", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7452695880, + "lat": 47.3525015, + "lon": 5.054897, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Siceco" + } + }, + { + "type": "node", + "id": 7452695881, + "lat": 47.3526029, + "lon": 5.0553811, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "operator": "Siceco" + } + }, + { + "type": "node", + "id": 7456756918, + "lat": 47.95631, + "lon": 2.01551, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45197*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7456756919, + "lat": 47.8920481, + "lon": 2.0538603, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45194*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7456756920, + "lat": 47.900234, + "lon": 1.986572, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45100*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://alizecharge.com/" + } + }, + { + "type": "node", + "id": 7456756921, + "lat": 47.9371789, + "lon": 1.9485364, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "dpphKbLKDsxJ5N2eFQVSyc", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45308*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7456756922, + "lat": 47.88026, + "lon": 1.93456, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45286*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7456756923, + "lat": 47.86555, + "lon": 1.83385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45282*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7456756924, + "lat": 47.919474, + "lon": 1.82654, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45169*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7456756925, + "lat": 47.9425243, + "lon": 1.8141707, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45235*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7457448720, + "lat": 43.6507151, + "lon": 3.5428464, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34114*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7457448733, + "lat": 43.6496634, + "lon": 3.5468129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34114*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7468393166, + "lat": 45.7583691, + "lon": 3.1355761, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "description": "Borne de recharge réservée à l'entreprise", + "fee": "no", + "motorcar": "yes", + "source": "survey" + } + }, + { + "type": "node", + "id": 7468393167, + "lat": 45.7584009, + "lon": 3.1355982, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Borne de recharge réservée aux visiteurs et aux salariés", + "fee": "no", + "motorcar": "yes", + "source": "CRAIG - IGN - TopoGEODIS - Feder Auvergne-Rhône-Alpes 2016" + } + }, + { + "type": "node", + "id": 7471294954, + "lat": 46.8575601, + "lon": 6.1580338, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02525950", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294955, + "lat": 47.174173, + "lon": 5.9022781, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02556193", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294956, + "lat": 47.039175, + "lon": 6.069732, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02501575", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294957, + "lat": 47.05909, + "lon": 6.67116, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02532127", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294958, + "lat": 47.0473718, + "lon": 6.4800595, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "protected": "bollard", + "ref:EU:EVSE": "FR*S25*P02527152", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294959, + "lat": 46.9924072, + "lon": 6.4634008, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02539092", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294960, + "lat": 46.9453141, + "lon": 6.3840413, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02502473", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471294967, + "lat": 46.8136824, + "lon": 6.3033827, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "maxstay": "unlimited", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02552570", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334624, + "lat": 47.1481, + "lon": 6.34398, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02557826", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334625, + "lat": 47.181798, + "lon": 6.3957938, + "tags": { + "amenity": "charging_station", + "amperage": "64", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "model": "29021-00006", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref": "CBVE05--AA1-0-2-1-0-R8019 SYDED", + "ref:EU:EVSE": "FR*S25*P02560147", + "serial_number": "500005532/001", + "socket:type2": "2", + "socket:typee": "2", + "start_date": "2017-09", + "voltage": "400" + } + }, + { + "type": "node", + "id": 7471334626, + "lat": 47.214342, + "lon": 6.539925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02545348", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334630, + "lat": 47.57395, + "lon": 6.75739, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07028521", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334631, + "lat": 47.57632, + "lon": 6.76207, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07028522", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334632, + "lat": 47.57665, + "lon": 6.76654, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07028520", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334642, + "lat": 47.7330868, + "lon": 6.9682113, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "manufacturer": "Sobem Scame", + "model": "29041-R9007-1", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090089115", + "serial_number": "500021632", + "socket:type2": "2", + "socket:typee": "2", + "start_date": "2019-06" + } + }, + { + "type": "node", + "id": 7471334644, + "lat": 47.71771, + "lon": 6.923167, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090041121", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334649, + "lat": 47.607333, + "lon": 6.861139, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090001139", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334656, + "lat": 47.6181668, + "lon": 6.8622408, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090032118", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334657, + "lat": 47.63468, + "lon": 6.82891, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090039113", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334660, + "lat": 47.641309, + "lon": 6.8611187, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090010111", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334661, + "lat": 47.641452, + "lon": 6.853426, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P09001088", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334662, + "lat": 47.64969, + "lon": 6.8492, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090010107", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334665, + "lat": 47.684083, + "lon": 6.814175, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090093119", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334666, + "lat": 47.656836, + "lon": 6.86415, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090075131", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334667, + "lat": 47.6220928, + "lon": 6.8314158, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090008123", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334668, + "lat": 47.64491, + "lon": 6.84058, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090010109", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334669, + "lat": 47.5840029, + "lon": 6.8955765, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090068130", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334670, + "lat": 47.5869874, + "lon": 6.8647038, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090094133", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471334671, + "lat": 47.6106454, + "lon": 6.9950291, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090071103", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7471792784, + "lat": 47.30968, + "lon": 4.501811, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Lochères", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7472048694, + "lat": 47.262166, + "lon": 6.658143, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02505176", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7472048695, + "lat": 47.09479, + "lon": 6.3395978, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02542477", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7472048696, + "lat": 46.714511, + "lon": 6.195361, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02541380", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7472048866, + "lat": 46.78996, + "lon": 3.9707463, + "tags": { + "access": "yes", + "addr:city": "Luzy", + "addr:country": "FR", + "addr:postcode": "58170", + "addr:street": "Avenue du Docteur Dollet", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "network": "SIEEEN", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIEEEN", + "payment:abonnement": "yes", + "power": "22kW", + "ref:EU:EVSE": "FR*S58*P58149*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey;streetlevel imagery" + } + }, + { + "type": "node", + "id": 7472300370, + "lat": 46.4208627, + "lon": 4.8649823, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Mâcon Saint-Albain", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7472380022, + "lat": 46.13426, + "lon": 4.7668146, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Taponas", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7472380027, + "lat": 45.889939, + "lon": 4.893953, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Mionnay Chatanay", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7472380028, + "lat": 45.884542, + "lon": 4.894022, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Mionnay Saint-Galmier", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7472380029, + "lat": 45.8192, + "lon": 4.90853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*P5899C629F2214", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 7472380030, + "lat": 45.7254354, + "lon": 4.8369248, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "move in pure", + "operator": "Freshmile", + "owner": "CNR", + "ref:EU:EVSE": "FR*CN1*PMCNYGZ", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7472403816, + "lat": 46.253274, + "lon": 5.217323, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Ville de Viriat", + "ref:EU:EVSE": "FR*V16*P01451*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473189180, + "lat": 45.257324, + "lon": 4.70591, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07078*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473189182, + "lat": 45.2617837, + "lon": 4.7060264, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07078*B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7473189183, + "lat": 45.286166, + "lon": 4.7268, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07172*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473189184, + "lat": 45.2711087, + "lon": 4.8011115, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07051*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473225885, + "lat": 45.2950705, + "lon": 4.8131631, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26325*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473225886, + "lat": 45.317047, + "lon": 4.766763, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07313*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7473225887, + "lat": 45.319062, + "lon": 4.769844, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38349*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473225888, + "lat": 45.3699061, + "lon": 4.7990172, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38298*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473225890, + "lat": 45.472966, + "lon": 4.834689, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38336*B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7473225903, + "lat": 45.693384, + "lon": 5.126671, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38475*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473353368, + "lat": 45.549504, + "lon": 4.584219, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "SAINT MARTIN LA PLAINE", + "ref:EU:EVSE": "FRS42P42259B1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473353369, + "lat": 45.544693, + "lon": 4.595128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "SAINT MARTIN LA PLAINE", + "ref:EU:EVSE": "FRS42P42259A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473353371, + "lat": 45.4792457, + "lon": 4.6472489, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "SAINTE CROIX EN JAREZ", + "ref:EU:EVSE": "FRS42P42210A1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7473454078, + "lat": 48.5290848, + "lon": -2.2637519, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Brev'Car", + "source": "survey" + } + }, + { + "type": "node", + "id": 7473454084, + "lat": 48.523581, + "lon": -2.2408019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Brev'Car", + "source": "survey" + } + }, + { + "type": "node", + "id": 7473465599, + "lat": 48.5240236, + "lon": -2.2497785, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "e.leclerc" + } + }, + { + "type": "node", + "id": 7474162702, + "lat": 47.4523496, + "lon": -0.5250814, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49007*004", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 7474624509, + "lat": 48.9913761, + "lon": 2.2787008, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBDV", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBDV2" + } + }, + { + "type": "node", + "id": 7474624510, + "lat": 48.9914172, + "lon": 2.2787125, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBPE", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBPE2" + } + }, + { + "type": "node", + "id": 7474624511, + "lat": 48.9914377, + "lon": 2.2787183, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBPE", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBPE1" + } + }, + { + "type": "node", + "id": 7474672846, + "lat": 48.5218389, + "lon": 0.5409831, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61293B", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7474678814, + "lat": 48.520878, + "lon": 0.5447202, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61293A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7474696618, + "lat": 48.519846, + "lon": 0.544029, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61293C", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7475456598, + "lat": 46.7136144, + "lon": -1.4306585, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7475456654, + "lat": 46.7108733, + "lon": -1.430933, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7477503841, + "lat": 50.6073258, + "lon": 3.1374099, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "2", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7477503842, + "lat": 50.6073089, + "lon": 3.1374723, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "2", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7477503843, + "lat": 50.6072974, + "lon": 3.1375212, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "1", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7477503880, + "lat": 50.6107768, + "lon": 3.1456954, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "2", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7477503881, + "lat": 50.6107574, + "lon": 3.1457859, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "2", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7477503882, + "lat": 50.6107374, + "lon": 3.1458648, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "2", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7477573095, + "lat": 50.6080272, + "lon": 3.1450865, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Legrand", + "capacity": "1", + "fee": "no", + "manufacturer": "Legrand", + "opening_hours": "24/7", + "operator": "Université de Lille", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 7480271831, + "lat": 44.0959192, + "lon": 6.9300294, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7481892264, + "lat": 50.3017362, + "lon": 2.7467269, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté Urbaine d'Arras", + "ref:EU:EVSE": "FR*H06*P62041*011", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7488752176, + "lat": 45.9324916, + "lon": 4.7252867, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "motorcar": "yes", + "operator": "Fresh", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7499198630, + "lat": 47.318987, + "lon": 6.81389, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02551959", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198632, + "lat": 47.4815, + "lon": 6.841167, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02503144", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198633, + "lat": 47.461732, + "lon": 6.860509, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02553957", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198636, + "lat": 47.55742, + "lon": 6.85294, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090022101", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198637, + "lat": 47.64552, + "lon": 6.14492, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07042815", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198638, + "lat": 47.6010902, + "lon": 6.1378821, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07051398", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198642, + "lat": 47.6299981, + "lon": 6.1395336, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07055017", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198643, + "lat": 47.62245, + "lon": 6.16127, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07055014", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7499198644, + "lat": 47.62155, + "lon": 6.15301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07055018", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7501064954, + "lat": 44.7625077, + "lon": 4.9188657, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26006*A", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7501430849, + "lat": 44.987033, + "lon": 4.579775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07129*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7503983480, + "lat": 44.3767684, + "lon": 2.5933395, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "source": "survey 2020;mapillary" + } + }, + { + "type": "node", + "id": 7504721249, + "lat": 48.9716722, + "lon": 2.2576076, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JHLU", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JHLU2" + } + }, + { + "type": "node", + "id": 7504721253, + "lat": 48.9760819, + "lon": 2.2562283, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JGFS", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JGFS2" + } + }, + { + "type": "node", + "id": 7505435044, + "lat": 44.3929376, + "lon": 2.6021095, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "colour": "orange", + "fee": "no", + "manufacturer": "Lafon Technologies", + "model": "PULSE 22 GL", + "network": "Charge Pulse", + "owner": "E. Leclerc", + "parking:fee": "no", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "source": "survey 2020;mapillary" + } + }, + { + "type": "node", + "id": 7505435078, + "lat": 44.3937009, + "lon": 2.603101, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "colour": "orange", + "fee": "no", + "manufacturer": "Lafon Technologies", + "model": "PULSE 22 GL", + "network": "Charge Pulse", + "owner": "E. Leclerc", + "parking:fee": "no", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "source": "survey 2020;mapillary" + } + }, + { + "type": "node", + "id": 7511504544, + "lat": 47.6757603, + "lon": 6.5213111, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7511504545, + "lat": 47.6756248, + "lon": 6.5213513, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7512652148, + "lat": 49.6605046, + "lon": -1.700808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "e-charge50", + "payment:online_payment": "yes" + } + }, + { + "type": "node", + "id": 7514879127, + "lat": 43.8015515, + "lon": 4.6564631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "3230541323849747", + "motorcar": "yes", + "name": "Tarascon", + "network": "move in pure", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "CNR", + "ref": "HTMJ, AKLC", + "ref:EU:EVSE": "FR*CN1*PRSXCTV", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "https://www.freshmile.com/", + "survey:date": "2019-09-08" + } + }, + { + "type": "node", + "id": 7515126046, + "lat": 43.3107958, + "lon": -0.3651485, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "3,5 EUR", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "payment:cash": "no", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S64*PMB64*100", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7515298625, + "lat": 43.2998679, + "lon": -0.375614, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 7515298626, + "lat": 43.2998463, + "lon": -0.3756069, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 7515298627, + "lat": 43.2974388, + "lon": -0.3762512, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 7515298628, + "lat": 43.2974414, + "lon": -0.3762003, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 7515298629, + "lat": 43.2951375, + "lon": -0.354221, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "3,5 EUR", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "payment:cash": "no", + "payment:credit_cards": "yes", + "payment:visa": "yes", + "ref": "MAT-012965", + "ref:EU:EVSE": "FR*S64*PMB64*96", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7515716919, + "lat": 49.6358894, + "lon": -1.6118721, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "e-charge50", + "payment:online_payment": "yes" + } + }, + { + "type": "node", + "id": 7517102441, + "lat": 45.734065, + "lon": 4.9981537, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7523108333, + "lat": 48.8454132, + "lon": 2.2920478, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no" + } + }, + { + "type": "node", + "id": 7523822644, + "lat": 46.059691, + "lon": 4.080406, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "ROANNE", + "ref:EU:EVSE": "FRS42P42187O1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7523822645, + "lat": 46.034698, + "lon": 4.072164, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "ROANNE", + "ref:EU:EVSE": "FRS42P42187I1", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7526601827, + "lat": 49.732501, + "lon": 1.4413386, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "owner": "SDE 76", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 Kw" + } + }, + { + "type": "node", + "id": 7527435310, + "lat": 48.2488357, + "lon": -4.4141097, + "tags": { + "amenity": "charging_station", + "operator": "E. Leclerc" + } + }, + { + "type": "node", + "id": 7528975877, + "lat": 49.6657882, + "lon": -1.6923147, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "e-charge50", + "payment:online_payment": "yes" + } + }, + { + "type": "node", + "id": 7528975878, + "lat": 49.654445, + "lon": -1.6754892, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "e-charge50", + "payment:online_payment": "yes" + } + }, + { + "type": "node", + "id": 7531624338, + "lat": 44.1819518, + "lon": 6.6287371, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7533342050, + "lat": 43.3067285, + "lon": -0.3325756, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "covered": "no", + "fee": "no", + "manufacturer": "hager", + "motorcar": "yes", + "operator": "Agence Centrale D'energies angelo Poitou", + "socket:type2": "1", + "socket:type2:output": "7kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7533372080, + "lat": 43.3058214, + "lon": -0.3336585, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "name": "Auchan", + "operator": "Nissan", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW" + } + }, + { + "type": "node", + "id": 7533386285, + "lat": 47.3917134, + "lon": 0.7179995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "voltage": "18" + } + }, + { + "type": "node", + "id": 7533433867, + "lat": 43.3067042, + "lon": -0.3326225, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "covered": "no", + "fee": "no", + "manufacturer": "hager", + "motorcar": "yes", + "operator": "Agence Centrale D'energies angelo Poitou", + "socket:type2": "1", + "socket:type2:output": "7 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7534018828, + "lat": 43.3047405, + "lon": -0.3261869, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "operator": "Renault", + "parking:fee": "yes", + "socket:type3c": "1", + "socket:type3c:output": "22 kW" + } + }, + { + "type": "node", + "id": 7534018850, + "lat": 43.3143094, + "lon": -0.3162251, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Peugeot", + "socket:type2": "1", + "socket:type2:output": "7kW", + "socket:typee": "1", + "socket:typee:output": "3,7 kW" + } + }, + { + "type": "node", + "id": 7534018851, + "lat": 43.318135, + "lon": -0.3080522, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Badge de chargement à aller chercher à l'entrée", + "fee": "no", + "manufacturer": "Evbox", + "operator": "Courtepaille", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "7.4kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7534018852, + "lat": 43.3181777, + "lon": -0.307954, + "tags": { + "access": "customers", + "amenity": "charging_station", + "description": "Badge de chargement à aller chercher à l'entrée", + "fee": "no", + "manufacturer": "Evbox", + "operator": "Courtepaille", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "7.4kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7535464197, + "lat": 49.1899788, + "lon": 6.1451095, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7538602166, + "lat": 49.0019759, + "lon": 2.2365466, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "EKCY", + "socket:type2": "2", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/EKCY1" + } + }, + { + "type": "node", + "id": 7538602168, + "lat": 48.9843011, + "lon": 2.2361084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JJJW", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JJJW2" + } + }, + { + "type": "node", + "id": 7538920890, + "lat": 47.5087105, + "lon": 3.9915221, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89378*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7541973604, + "lat": 49.6340904, + "lon": -1.6054038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "socket:chademo": "1", + "socket:type1_combo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7542516540, + "lat": 43.3148895, + "lon": -0.3845036, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "3,5 EUR", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Jules Gois", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "payment:cash": "no", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S64*PMB64*40", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7547891343, + "lat": 47.4956188, + "lon": -1.4199521, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44077A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7549173083, + "lat": 50.6738004, + "lon": 2.4852638, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 7551712342, + "lat": 43.9540788, + "lon": 6.3702772, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "eborn", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref:EU:EVSE": "FR*EBN*PBHNVCQ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7552176085, + "lat": 46.0318022, + "lon": 4.3105409, + "tags": { + "amenity": "charging_station", + "operator": "Ville de Thizy-les-Bourgs" + } + }, + { + "type": "node", + "id": 7552373940, + "lat": 49.2036253, + "lon": -0.5124671, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET154", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7555925181, + "lat": 44.2517468, + "lon": 1.6111353, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "freshmile" + } + }, + { + "type": "node", + "id": 7556567785, + "lat": 50.628607, + "lon": 2.7717524, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes Flandre-Lys", + "ref:EU:EVSE": "FR*H09*P62491*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7559066485, + "lat": 45.7800239, + "lon": 3.1250912, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "socket:type3c": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 7559576182, + "lat": 43.3251162, + "lon": -0.326461, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*127", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7559817560, + "lat": 47.9107041, + "lon": 1.9702103, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "465988881145905", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q28406392", + "operator:wikipedia": "en:EVBox", + "owner": "SDE22", + "ref": "LBL-ICR-001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7560052883, + "lat": 46.3127637, + "lon": 3.4041192, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDE03", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PVARENNESMAIRIE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7560760351, + "lat": 49.2327687, + "lon": -0.0420704, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SDE Calvados", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET295", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7563508041, + "lat": 44.3419267, + "lon": 2.4391848, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12162*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7566574306, + "lat": 49.5710798, + "lon": 3.8859389, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*P0272073", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7566593493, + "lat": 43.9653581, + "lon": 1.5862387, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7566982295, + "lat": 49.6397083, + "lon": -1.5794038, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "e-charge50", + "payment:credit_cards": "yes", + "payment:online_payment": "yes" + } + }, + { + "type": "node", + "id": 7570139726, + "lat": 48.714596, + "lon": 0.4312602, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61451A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7570144825, + "lat": 43.2954789, + "lon": -0.3688235, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "ParkingD04 et D06", + "fee": "no", + "indoor": "yes", + "level": "-1", + "parking:fee": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144826, + "lat": 43.295467, + "lon": -0.3688207, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "ParkingD04 et D06", + "fee": "no", + "indoor": "yes", + "level": "-1", + "parking:fee": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144827, + "lat": 43.2954786, + "lon": -0.3688353, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "ParkingH02 et H04", + "indoor": "yes", + "level": "-2", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144828, + "lat": 43.2954684, + "lon": -0.3688329, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "ParkingH02 et H04", + "indoor": "yes", + "level": "-2", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144829, + "lat": 43.2936551, + "lon": -0.3681609, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "Parking 1013, 1014, 1015", + "fee": "no", + "indoor": "yes", + "level": "-1", + "parking:fee": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144830, + "lat": 43.293658, + "lon": -0.368144, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "Parking 1013, 1014, 1015", + "fee": "no", + "indoor": "yes", + "level": "-1", + "parking:fee": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144831, + "lat": 43.2936803, + "lon": -0.368148, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "Parking 1019, 1020, 1021", + "fee": "no", + "indoor": "yes", + "level": "-1", + "parking:fee": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7570144832, + "lat": 43.2936803, + "lon": -0.3681678, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "Parking 1019, 1020, 1021", + "fee": "no", + "indoor": "yes", + "level": "-1", + "parking:fee": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7572160985, + "lat": 48.6973212, + "lon": 2.1822079, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "2", + "hgv": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Communauté d'agglomération Paris-Saclay", + "scooter": "no", + "survey:date": "2020-05-30" + } + }, + { + "type": "node", + "id": 7572665085, + "lat": 48.6992445, + "lon": 2.1789122, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "name": "UPSaclay Entrée Orsay", + "note": "en cours d'installation", + "operator": "Paris-Saclay", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes", + "survey:date": "2020-05-30" + } + }, + { + "type": "node", + "id": 7573342351, + "lat": 45.9281344, + "lon": 4.9540468, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "RSE", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7573357383, + "lat": 46.0196401, + "lon": 4.9287468, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573372290, + "lat": 45.0595221, + "lon": 5.3434855, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38319*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378891, + "lat": 45.9987765, + "lon": 4.8983547, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378892, + "lat": 46.0013524, + "lon": 4.8487191, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378897, + "lat": 46.0206971, + "lon": 4.8349258, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378898, + "lat": 45.9933178, + "lon": 4.8215899, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378899, + "lat": 45.9724349, + "lon": 4.7959533, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378901, + "lat": 45.9601907, + "lon": 4.8219131, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378902, + "lat": 45.9673353, + "lon": 4.8670614, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7573378909, + "lat": 45.9512793, + "lon": 4.8825136, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.17 €/kWh + 0,01 €/min", + "fee": "yes", + "opening_hours": "24/7", + "operator": "RSE", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7573378910, + "lat": 45.9575141, + "lon": 4.9408208, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "RSE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7577379752, + "lat": 45.8223528, + "lon": 4.8725183, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "IZIVIA Grand Lyon", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Izivia", + "ref:EU:EVSE": "FR*GLY*P*LYON*11*_*_*_", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 7578799880, + "lat": 43.6093582, + "lon": 1.4319701, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*013", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7580239697, + "lat": 49.4200896, + "lon": 2.3605172, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7580564880, + "lat": 48.2276433, + "lon": 2.4268076, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "ref": "18848" + } + }, + { + "type": "node", + "id": 7580599504, + "lat": 48.3428564, + "lon": 2.3786474, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMA PNR Gatinais", + "ref:EU:EVSE": "FR*A87*P91069*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7588666745, + "lat": 43.3637134, + "lon": -1.6977412, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*121", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "voltage": "18Kw" + } + }, + { + "type": "node", + "id": 7588704874, + "lat": 43.3814596, + "lon": -1.6647896, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "mapillary": "533030491212412", + "operator": "BOUYGUES ENERGIES ET SERVICES" + } + }, + { + "type": "node", + "id": 7590467700, + "lat": 46.138259, + "lon": 3.4372374, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PCUSSETGILBERT", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "survey", + "survey:date": "2020-05-31" + } + }, + { + "type": "node", + "id": 7590815987, + "lat": 50.6155396, + "lon": 3.1249668, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "socket:type2": "1", + "socket:type2:output": "12.2 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 7590815988, + "lat": 50.6155243, + "lon": 3.1249878, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "socket:type2": "1", + "socket:type2:output": "12.2 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 7590815989, + "lat": 50.6114421, + "lon": 3.1353157, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "IMT Douai - Lille Villeneuve", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "IMT Douai - Lille Villeneuve", + "ref:EU:EVSE": "FR*E45*PIMTDOUAI59650*1", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7593092208, + "lat": 45.5720677, + "lon": 5.9775951, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*POM98B5NCGU", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7596768924, + "lat": 47.3355382, + "lon": 0.6990621, + "tags": { + "access": "yes", + "addr:city": "Chambray-lès-Tours", + "addr:country": "FR", + "addr:housenumber": "18", + "addr:postcode": "31300", + "amenity": "charging_station", + "fee": "yes", + "name": "Power Dot - Ibis Styles Tours" + } + }, + { + "type": "node", + "id": 7596791185, + "lat": 48.9912798, + "lon": 2.2228465, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "KUQE", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/KUQE2" + } + }, + { + "type": "node", + "id": 7596791186, + "lat": 48.9912527, + "lon": 2.2228499, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "KURB", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/KURB2" + } + }, + { + "type": "node", + "id": 7598927728, + "lat": 46.64537, + "lon": 0.18175, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B109", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7604627587, + "lat": 45.8552302, + "lon": 4.6800216, + "tags": { + "access": "customers", + "amenity": "charging_station", + "name": "Lozanne", + "operator": "izivia" + } + }, + { + "type": "node", + "id": 7604775087, + "lat": 45.8717925, + "lon": 4.7288655, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "name": "EV", + "operator": "izivia" + } + }, + { + "type": "node", + "id": 7606604460, + "lat": 47.8128646, + "lon": 6.3804697, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07031111", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606634879, + "lat": 47.8816386, + "lon": 6.3967729, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07024540", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606655956, + "lat": 47.8850913, + "lon": 6.2730131, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07046736", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606677805, + "lat": 47.8336736, + "lon": 6.0935876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P07047237", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606683170, + "lat": 48.0988525, + "lon": -0.3514669, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53255*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606696694, + "lat": 48.4608703, + "lon": -0.1986211, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53185*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606698754, + "lat": 48.3004929, + "lon": -0.6126702, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53147*003", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7606710289, + "lat": 47.7652787, + "lon": 6.1037592, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SIED70", + "ref:EU:EVSE": "FR*S70*P0702289", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606718115, + "lat": 48.0394247, + "lon": -0.475743, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53267*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606728111, + "lat": 48.1556014, + "lon": -0.3973361, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53097*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606732643, + "lat": 48.3424513, + "lon": -0.8610017, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53211*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606732789, + "lat": 48.2511126, + "lon": -0.3661605, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53016*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606735764, + "lat": 47.7912731, + "lon": -0.4396243, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53210*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606738861, + "lat": 47.8756409, + "lon": -0.3938671, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53037*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606741664, + "lat": 47.9342265, + "lon": -0.416525, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53017*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606752003, + "lat": 48.0204711, + "lon": -0.5810725, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53025*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606753697, + "lat": 48.1351505, + "lon": -0.5569676, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53161*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606753802, + "lat": 48.2969568, + "lon": -0.9395675, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53096*002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7606754579, + "lat": 48.2973202, + "lon": -0.929148, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53096*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606760394, + "lat": 47.871042, + "lon": -0.747175, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53136*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606763158, + "lat": 48.1827912, + "lon": -0.8997547, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53015*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606765436, + "lat": 47.8343935, + "lon": -0.7179878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53062*002", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606767087, + "lat": 47.8230896, + "lon": -0.6895132, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53014*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606772425, + "lat": 48.0540892, + "lon": -0.740991, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53130*005", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7606774386, + "lat": 48.2973544, + "lon": -0.6112897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53147*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606776031, + "lat": 48.2547358, + "lon": -0.4986791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53122*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606786086, + "lat": 48.1949433, + "lon": -0.6633976, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53146*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606798923, + "lat": 48.0850229, + "lon": -0.6433481, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53007*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606798924, + "lat": 48.1373567, + "lon": -0.9081125, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53243*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606800396, + "lat": 48.0551113, + "lon": -0.7903324, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53130*004", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7606804926, + "lat": 48.0978229, + "lon": -0.8864636, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53103*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606806219, + "lat": 48.0601249, + "lon": -0.9359393, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53137*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606816521, + "lat": 47.7935556, + "lon": -1.0557378, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53188*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7606816585, + "lat": 47.8484889, + "lon": -0.9479907, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53084*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7608825572, + "lat": 46.2681661, + "lon": 6.3669717, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7610558907, + "lat": 50.7322017, + "lon": 2.3721095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat intercommunal d'énergie de Flandre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H14*P59497001", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7611601318, + "lat": 45.9691296, + "lon": 4.6651768, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7611601319, + "lat": 45.8068971, + "lon": 4.7802475, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Darty Limonest", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Darty - Limonest", + "ref:EU:EVSE": "FR*E13*PDARTYLIMONEST69760*1", + "socket:type2": "4", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7612649885, + "lat": 43.8987317, + "lon": 1.990122, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lagrave - Place Toulouse Lautrec", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81131*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7615986735, + "lat": 50.2896603, + "lon": 3.150588, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7617381385, + "lat": 43.7661255, + "lon": 3.862995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 7617619945, + "lat": 44.2068163, + "lon": 0.6198921, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7617619946, + "lat": 44.2069033, + "lon": 0.6197768, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7617795349, + "lat": 46.7985483, + "lon": 1.3057758, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7618103650, + "lat": 44.2190291, + "lon": 2.2024047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12258*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7622550352, + "lat": 48.8243613, + "lon": 2.3368971, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9014*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7622550353, + "lat": 48.8243701, + "lon": 2.3369789, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9014*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7622550354, + "lat": 48.8243763, + "lon": 2.3370459, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9014*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7622567513, + "lat": 49.6039093, + "lon": -1.6628129, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7624993335, + "lat": 49.8722343, + "lon": 0.7988195, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7626025589, + "lat": 48.5548878, + "lon": -2.5446579, + "tags": { + "amenity": "charging_station", + "fixme": "Il y a 2 autres bornes à proximité, et ajoutées le 2021-11-23.", + "operator": "EKlink" + } + }, + { + "type": "node", + "id": 7633443427, + "lat": 43.8964927, + "lon": -0.4919439, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*17", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7633499520, + "lat": 43.8950928, + "lon": -0.4596916, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*18", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7633526834, + "lat": 43.9057358, + "lon": -0.4742471, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 7638470399, + "lat": 44.3531861, + "lon": -1.0728869, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*73", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7639843038, + "lat": 46.5779437, + "lon": 5.7469265, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "model": "EVLink", + "opening_hours": "24/7", + "operator": "ALDI", + "operator:wikidata": "Q125054", + "operator:wikipedia": "en:Aldi", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7642880970, + "lat": 45.2967507, + "lon": 5.5799952, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "contact:website": "https://ecoload.fr/", + "fee": "no", + "network": "Ecoload", + "opening_hours": "24/7", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 7643297477, + "lat": 46.2667277, + "lon": 6.842124, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "outdoor", + "motorcar": "no", + "name": "eBiker Charger Outdoor", + "operator": "Bas du télécabine de Super Châtel" + } + }, + { + "type": "node", + "id": 7643315919, + "lat": 46.2354029, + "lon": 6.790448, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "outdoor", + "motorcar": "no", + "name": "eBike Charger Outdoor", + "operator": "Bas télésiège Pierre Longue" + } + }, + { + "type": "node", + "id": 7643339987, + "lat": 47.8576434, + "lon": 7.1486579, + "tags": { + "amenity": "charging_station", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Memorial Hartmannswillerkopf" + } + }, + { + "type": "node", + "id": 7643372294, + "lat": 48.1336756, + "lon": 7.0945982, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Restaurant du Blancrupt - Lac Blanc", + "operator": "eBike Power Station" + } + }, + { + "type": "node", + "id": 7643376330, + "lat": 48.0782079, + "lon": 7.0586696, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Auberge Schantzwasen", + "operator": "Bosch eBike Power Station" + } + }, + { + "type": "node", + "id": 7643413016, + "lat": 47.9235507, + "lon": 7.0298004, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Rodelbahn Le Markstein" + } + }, + { + "type": "node", + "id": 7643433779, + "lat": 47.9047626, + "lon": 7.1039292, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "La Vue des Alpes" + } + }, + { + "type": "node", + "id": 7643509409, + "lat": 48.6222999, + "lon": 7.309526, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Power Station", + "operator": "Office Tourisme de Wangenbourg" + } + }, + { + "type": "node", + "id": 7646454242, + "lat": 44.4717069, + "lon": 2.7229142, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12033*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "mapillary 2019" + } + }, + { + "type": "node", + "id": 7652898640, + "lat": 45.4856106, + "lon": 5.4765468, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref:EU:EVSE": "FR*EBN*PKSTK4RC9AC", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7656839231, + "lat": 49.3472062, + "lon": -0.8073962, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET230", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7656897417, + "lat": 48.025891, + "lon": 0.180105, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7657629852, + "lat": 50.6052122, + "lon": 3.1607434, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7657629853, + "lat": 50.6047759, + "lon": 3.1610434, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7657629854, + "lat": 50.6050086, + "lon": 3.1603637, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7657629855, + "lat": 50.6047239, + "lon": 3.1611228, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7660403829, + "lat": 45.6510658, + "lon": -0.2527435, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7660456996, + "lat": 49.342334, + "lon": -0.7529837, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET135", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7660869085, + "lat": 48.683651, + "lon": 2.2368306, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS1311", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "survey:date": "2020-06-28" + } + }, + { + "type": "node", + "id": 7663254954, + "lat": 49.904141, + "lon": 0.9253071, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7666450926, + "lat": 49.2042605, + "lon": -0.2962688, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET226", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7667570258, + "lat": 50.1726712, + "lon": 3.2270089, + "tags": { + "amenity": "charging_station", + "brand": "nexans", + "capacity": "2", + "email": "support@alizecharge.fr", + "fixme": "a confirmer l’emplacement", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération de Cambrai", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H22*P59122006", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7667570259, + "lat": 50.1751414, + "lon": 3.2266647, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération de Cambrai", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H22*P59122005", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7667596605, + "lat": 47.2949633, + "lon": 0.3550494, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "yes", + "fixme": "station recharge vélo éléctrique en hydrogène. tags appropriés à compléter", + "pressure": "200" + } + }, + { + "type": "node", + "id": 7669803452, + "lat": 45.4756987, + "lon": 6.0260235, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7671164253, + "lat": 43.2756787, + "lon": -0.249023, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "3,5 EUR", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "payment:cash": "no", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S64*PMB64*14", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7671164254, + "lat": 43.2840655, + "lon": -0.2688371, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "3,5 EUR", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "payment:cash": "no", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S64*PMB64*95", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7674797767, + "lat": 43.6984901, + "lon": 7.2556037, + "tags": { + "amenity": "charging_station", + "capacity": "5" + } + }, + { + "type": "node", + "id": 7675103441, + "lat": 48.5542205, + "lon": -1.4999564, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7679457673, + "lat": 43.1803051, + "lon": 5.7737145, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 7679696942, + "lat": 49.9128055, + "lon": 4.0915932, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW" + } + }, + { + "type": "node", + "id": 7681235724, + "lat": 43.8649539, + "lon": -0.5912129, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*83", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7681296998, + "lat": 48.2879111, + "lon": -2.1536523, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "1", + "name": "ChargePoint", + "operator": "SDE22" + } + }, + { + "type": "node", + "id": 7683018885, + "lat": 48.8138034, + "lon": 3.085516, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "model": "EVLink", + "motorcar": "yes", + "name": "Place Pasteur", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDESM", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7683022185, + "lat": 48.815028, + "lon": 3.0823636, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "model": "EVLink", + "motorcar": "yes", + "name": "Rue Victor Hugo", + "network": "Ecocharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDESM", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7683029882, + "lat": 47.9733641, + "lon": 3.1983188, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY La Réserve", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7683029886, + "lat": 43.6069428, + "lon": 1.4507864, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*010", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7683039985, + "lat": 43.6070021, + "lon": 1.4508773, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*010", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7683058585, + "lat": 47.9733252, + "lon": 3.1982186, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY La Réserve", + "operator": "IONITY", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7683059325, + "lat": 47.9733753, + "lon": 3.1982981, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY La Réserve", + "opening_hours": "24/7", + "operator": "IONITY", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7683059326, + "lat": 47.9734215, + "lon": 3.1984058, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY La Réserve", + "opening_hours": "24/7", + "operator": "IONITY", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7683061291, + "lat": 47.9734341, + "lon": 3.1983844, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY La Réserve", + "opening_hours": "24/7", + "operator": "IONITY", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7684887743, + "lat": 46.13323, + "lon": 3.4161962, + "tags": { + "amenity": "charging_station", + "source": "survey", + "survey:date": "2020-06-13" + } + }, + { + "type": "node", + "id": 7685096784, + "lat": 48.7331967, + "lon": 2.0193517, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7687014181, + "lat": 49.3385651, + "lon": 0.0921489, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET167", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7687089077, + "lat": 47.9611915, + "lon": 6.9808161, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Schaeffert" + } + }, + { + "type": "node", + "id": 7687094828, + "lat": 48.4065953, + "lon": 7.2596308, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike PowerStation", + "operator": "Auberge Hazemann" + } + }, + { + "type": "node", + "id": 7687105622, + "lat": 47.9684617, + "lon": 7.0317387, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Uff Rain" + } + }, + { + "type": "node", + "id": 7687107496, + "lat": 47.9233047, + "lon": 7.0088847, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Treh" + } + }, + { + "type": "node", + "id": 7687137154, + "lat": 48.136784, + "lon": 7.0864654, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Bâtiment d'accueil Lac Blanc 1200" + } + }, + { + "type": "node", + "id": 7687177219, + "lat": 47.927554, + "lon": 6.9260908, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du  Felsach" + } + }, + { + "type": "node", + "id": 7687411617, + "lat": 48.0044231, + "lon": 7.1222619, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Christlesgut" + } + }, + { + "type": "node", + "id": 7687624696, + "lat": 48.0336899, + "lon": 7.0448354, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Gaschney" + } + }, + { + "type": "node", + "id": 7687629694, + "lat": 48.0781893, + "lon": 7.1278668, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Glasborn" + } + }, + { + "type": "node", + "id": 7687632416, + "lat": 48.0880929, + "lon": 7.1101721, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Musmiss" + } + }, + { + "type": "node", + "id": 7687670958, + "lat": 48.0319198, + "lon": 6.9938864, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Schmargult" + } + }, + { + "type": "node", + "id": 7687698731, + "lat": 49.0057633, + "lon": 2.2483778, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LENN", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LENN1" + } + }, + { + "type": "node", + "id": 7687729650, + "lat": 47.9825841, + "lon": 7.1194564, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme-Auberge Rothenbrunnen" + } + }, + { + "type": "node", + "id": 7687739877, + "lat": 48.0148514, + "lon": 7.0116679, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Kastelberg" + } + }, + { + "type": "node", + "id": 7687764262, + "lat": 47.9909669, + "lon": 7.1321937, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Buchwald" + } + }, + { + "type": "node", + "id": 7687770251, + "lat": 47.9889887, + "lon": 7.1240602, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme-Auberge Kahlenwasen" + } + }, + { + "type": "node", + "id": 7687776130, + "lat": 47.9048387, + "lon": 7.089485, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Haag" + } + }, + { + "type": "node", + "id": 7687776131, + "lat": 47.8763497, + "lon": 7.1302949, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme-Auberge du Kohlschlag" + } + }, + { + "type": "node", + "id": 7687780106, + "lat": 47.9827449, + "lon": 7.1324517, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme-Auberge Strohberg" + } + }, + { + "type": "node", + "id": 7687787489, + "lat": 47.9493475, + "lon": 7.0192964, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Power Station", + "operator": "Ferme-Auberge Hahnenbrunnen" + } + }, + { + "type": "node", + "id": 7689110861, + "lat": 47.1119998, + "lon": 0.2754119, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7689230817, + "lat": 42.5043012, + "lon": 2.0375987, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "capacity:car": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Font-Romeu - Avenue d'Espagne", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "payment": "yes", + "ref:EU:EVSE": "FR*S66*P66124*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7689350620, + "lat": 46.9145227, + "lon": 6.3208991, + "tags": { + "amenity": "charging_station", + "fixme": "Vérifier l'emplacement et ajouter des informations détaillées." + } + }, + { + "type": "node", + "id": 7691092187, + "lat": 49.0271176, + "lon": 2.2125267, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LDRU", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LDRU2" + } + }, + { + "type": "node", + "id": 7691513442, + "lat": 49.2492508, + "lon": 4.037157, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 7691513443, + "lat": 49.2564787, + "lon": 4.033058, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 7695472165, + "lat": 46.8199191, + "lon": -1.9899718, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85172*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7696184145, + "lat": 50.2868792, + "lon": 2.7704564, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté Urbaine d'Arras", + "ref:EU:EVSE": "FR*H06*P62041*008", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7696184146, + "lat": 50.288617, + "lon": 2.7649652, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté Urbaine d'Arras", + "ref:EU:EVSE": "FR*H06*P62041*009", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7700059947, + "lat": 49.3384893, + "lon": -0.6238282, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET191", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 7704612011, + "lat": 45.4199258, + "lon": 6.3647184, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7704981352, + "lat": 47.8677703, + "lon": 1.911236, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "fixme": "Trois emplacements de parking mais seulement deux prises électriques ?", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan", + "owner": "Paragon Mobility", + "parking:fee": "no", + "socket:chademo": "1", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7705281627, + "lat": 50.821188, + "lon": 2.1949957, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7707624294, + "lat": 49.0872767, + "lon": 0.5966623, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "SGA Mobility" + } + }, + { + "type": "node", + "id": 7707642932, + "lat": 49.0909144, + "lon": 0.6013421, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SGA mobility" + } + }, + { + "type": "node", + "id": 7709960014, + "lat": 45.4576352, + "lon": 3.1877544, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "6,5 €", + "fee": "yes", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 7710134997, + "lat": 48.8685441, + "lon": 2.6754141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Clem'", + "note": "une des places de stationnement peut-être utilisée soit pour l'autopartage, soit pour le covoiturage, soit pour la recharge d'un véhicule électrique", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7710731704, + "lat": 47.8631156, + "lon": 7.1232355, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Freundstein" + } + }, + { + "type": "node", + "id": 7710734595, + "lat": 48.1968364, + "lon": 7.1126771, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge la Graine Johe" + } + }, + { + "type": "node", + "id": 7710750050, + "lat": 47.8223969, + "lon": 6.8852877, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Baerenbach" + } + }, + { + "type": "node", + "id": 7710762194, + "lat": 47.8158348, + "lon": 6.8557584, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Hinteralfeld" + } + }, + { + "type": "node", + "id": 7710775968, + "lat": 47.7890329, + "lon": 6.8620496, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme-Auberge du Wissgrut" + } + }, + { + "type": "node", + "id": 7710836806, + "lat": 47.7716765, + "lon": 6.9499326, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme-Auberge du Bruckenwald" + } + }, + { + "type": "node", + "id": 7710871404, + "lat": 47.830547, + "lon": 7.0108234, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge Gsang" + } + }, + { + "type": "node", + "id": 7713099430, + "lat": 49.3518281, + "lon": 0.5138795, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE95", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PPTAUDEMERGARE", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 7714094624, + "lat": 45.8203374, + "lon": 4.7676956, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW" + } + }, + { + "type": "node", + "id": 7717533702, + "lat": 45.5265109, + "lon": 3.3363488, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7717698828, + "lat": 43.2187893, + "lon": 0.085198, + "tags": { + "addr:street": "Parc des expositions de Tarbes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Tarbes - Parking Parc des Expositions", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65440*010", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7717909735, + "lat": 49.6339322, + "lon": -1.6064191, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "socket:chademo": "1", + "socket:type1_combo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7720636415, + "lat": 48.5153671, + "lon": -3.5837499, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BQAD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7720969410, + "lat": 45.5971958, + "lon": 5.875034, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7721833535, + "lat": 47.6036972, + "lon": -0.6865945, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "motorcar": "no", + "operator": "Conseil départemental" + } + }, + { + "type": "node", + "id": 7721912846, + "lat": 44.9159137, + "lon": 4.9127537, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 7725426881, + "lat": 44.5534092, + "lon": 2.672193, + "tags": { + "amenity": "charging_station", + "amperage": "22", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "contact:phone": "+33 805021480", + "contact:website": "https://www.reveocharge.com/fr/chercher-et-trouver-une-borne-de-recharge/", + "fee": "yes", + "manufacturer": "G2mobility", + "model": "DIVA Smart Pilot", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12176*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2020" + } + }, + { + "type": "node", + "id": 7725565283, + "lat": 49.414677, + "lon": 1.0895096, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76681*001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7727407708, + "lat": 49.5727751, + "lon": 0.4697349, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7728213743, + "lat": 46.2208839, + "lon": 5.2424079, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7729983459, + "lat": 47.8247077, + "lon": 6.9008607, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Gresson" + } + }, + { + "type": "node", + "id": 7729996779, + "lat": 47.8216205, + "lon": 7.0306943, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Thanner Hubel" + } + }, + { + "type": "node", + "id": 7730029139, + "lat": 48.1034925, + "lon": 7.0747905, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Lac de Forlet" + } + }, + { + "type": "node", + "id": 7730033916, + "lat": 47.7796991, + "lon": 6.9140459, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme Auberge du Lochberg" + } + }, + { + "type": "node", + "id": 7730046182, + "lat": 48.0356773, + "lon": 7.0081954, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Auberge du Pied du Hohneck" + } + }, + { + "type": "node", + "id": 7730052747, + "lat": 48.0254899, + "lon": 6.9960324, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Ferme et Auberge Breitzhousen" + } + }, + { + "type": "node", + "id": 7730076954, + "lat": 48.0373376, + "lon": 7.0400822, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Le Schallern" + } + }, + { + "type": "node", + "id": 7730095780, + "lat": 48.0636323, + "lon": 7.0218189, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Brasserie De La Schlucht" + } + }, + { + "type": "node", + "id": 7730641333, + "lat": 46.1756585, + "lon": -1.1128528, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7731571003, + "lat": 47.6508429, + "lon": 0.4701474, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7731915661, + "lat": 48.5143007, + "lon": -2.7797035, + "tags": { + "amenity": "charging_station", + "brand": "Brev'Car", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "operator": "Syndicat Départemental d’Énergie", + "operator:website": "https://www.sde22.fr/bornes-de-charge-pour-v-hicules", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "1", + "socket:type3:output": "22kW" + } + }, + { + "type": "node", + "id": 7733520724, + "lat": 49.4180426, + "lon": 0.3974192, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE81", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PCONTEVILLEPRESBYTERE", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 7733922691, + "lat": 43.4627433, + "lon": 6.4787469, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no" + } + }, + { + "type": "node", + "id": 7734676584, + "lat": 48.6426633, + "lon": 2.2302773, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE28612", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7739406123, + "lat": 47.1811622, + "lon": 0.0472156, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49140*001", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 7741480669, + "lat": 50.6318315, + "lon": 2.9668354, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "50", + "name": "Auchan Englos - Borne de recharge", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "operator:wikipedia": "fr:Auchan", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "44kW" + } + }, + { + "type": "node", + "id": 7741480670, + "lat": 50.6253593, + "lon": 2.9602554, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "AREA Englos - Borne de recharge", + "network": "ASL AREA Englos", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "ASL AREA Englos", + "ref:EU:EVSE": "FR*SSD*PASLAREAENGLOS59320*1", + "socket:schuko": "1", + "socket:schuko:output": "3.7 KW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7745291310, + "lat": 48.8908303, + "lon": 1.7398479, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY ma borne", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 7747399757, + "lat": 48.4563098, + "lon": -2.0567827, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7749797080, + "lat": 43.3227764, + "lon": -0.5791456, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "Monein - Jardin Public", + "note": "Type 2 charger", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7755746275, + "lat": 43.3134009, + "lon": -1.579375, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "2982922248618198", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*113", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7756038201, + "lat": 48.5338125, + "lon": 7.462687, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Station Outdoor" + } + }, + { + "type": "node", + "id": 7756461740, + "lat": 43.231912, + "lon": 5.4382276, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "operator:email": "contact@evzen.com", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PRKX3ZSAXIM", + "socket:type2": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7756490629, + "lat": 45.9179562, + "lon": 6.4748342, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motor_vehicle": "no", + "name": "Bosch eBike Charger", + "operator": "Hotel du Lac des Confins" + } + }, + { + "type": "node", + "id": 7756550149, + "lat": 48.0376212, + "lon": 6.9711988, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "location": "indoor", + "motorcar": "no", + "name": "Bosch eBike Charger", + "operator": "Bike Shop La Bresse" + } + }, + { + "type": "node", + "id": 7757076967, + "lat": 43.2685185, + "lon": 5.4142818, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "parking:fee": "no", + "ref:EU:EVSE": "FR*M13*P13210*004", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:voltage": "230 V", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.evzen.com/larecharge" + } + }, + { + "type": "node", + "id": 7761855477, + "lat": 46.372539, + "lon": 6.481823, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 7762491232, + "lat": 43.7037833, + "lon": 4.6438637, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Evlink" + } + }, + { + "type": "node", + "id": 7762491233, + "lat": 43.7037912, + "lon": 4.6438022, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "EVLINK" + } + }, + { + "type": "node", + "id": 7762521571, + "lat": 47.6755345, + "lon": -3.1677224, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 1 84 88 75 28", + "contact:website": "https://www.freshmile.com/partenaires/morbihan-energies/", + "description": "Gratuit jusqu'au 01/09/2020", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:cash": "no", + "payment:cb": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S56*P56013*A", + "socket:chademo": "1", + "socket:chademo:current": "50", + "socket:chademo:output": "20 kW", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:current": "60", + "socket:type2_combo:output": "20 kW" + } + }, + { + "type": "node", + "id": 7764717231, + "lat": 48.8429615, + "lon": 0.0331674, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61494A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7765422578, + "lat": 49.1303066, + "lon": 2.5138629, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE Oise Charging Station", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7769028983, + "lat": 46.8067543, + "lon": 0.0178664, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B046", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7772224540, + "lat": 48.6714286, + "lon": 4.1969717, + "tags": { + "addr:city": "Mailly-le-Camp", + "addr:housenumber": "36", + "addr:postcode": "10230", + "addr:street": "Rue du Général de Gaulle", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7772723150, + "lat": 44.0700333, + "lon": 6.1792007, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7776111788, + "lat": 47.439803, + "lon": -1.4798364, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44110B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7776207486, + "lat": 43.6039769, + "lon": 2.2471945, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Castres - Place Soult - Parking Extérieur", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81065*011", + "socket:type2": "4", + "socket:type3c": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7777434918, + "lat": 45.6648814, + "lon": 4.8946619, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "Borne de recharge", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 7777485820, + "lat": 44.9043169, + "lon": -0.7466345, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7777556895, + "lat": 48.3019333, + "lon": 6.1332605, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Mirecourt - Parking Mairie", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:type2": "2", + "socket:type2:output": "18 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7778927729, + "lat": 48.5277525, + "lon": 0.5322321, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7780244794, + "lat": 44.9341332, + "lon": 6.5863323, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05133*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7781419873, + "lat": 45.2858969, + "lon": 6.8829052, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "operator": "Maurienne", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7784869153, + "lat": 48.0987517, + "lon": -0.7885516, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53054*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7785010325, + "lat": 47.6188223, + "lon": -2.7366204, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56243*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7788407093, + "lat": 46.7107273, + "lon": 0.0963262, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B111", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7793978998, + "lat": 43.4139628, + "lon": 6.451254, + "tags": { + "access": "customers", + "addr:city": "Vidauban", + "addr:street": "A8 - Aire de Vidauban Sud", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire de Vidauban Sud Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/vidaubanfrsupercharger" + } + }, + { + "type": "node", + "id": 7794243059, + "lat": 48.0538217, + "lon": 4.3958229, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7795227863, + "lat": 44.2885692, + "lon": 4.838809, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "22", + "name": "Eborn charging station suze-la-rousse", + "operator": "SDED" + } + }, + { + "type": "node", + "id": 7795466729, + "lat": 47.3621529, + "lon": 5.0511137, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7796018647, + "lat": 48.4520626, + "lon": 1.5304929, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7796160785, + "lat": 49.7698396, + "lon": 4.719625, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ardennes Métropole", + "survey:date": "2020-08-08" + } + }, + { + "type": "node", + "id": 7796192786, + "lat": 49.7683485, + "lon": 4.7233327, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ardennes Métropole", + "survey:date": "2020-08-08" + } + }, + { + "type": "node", + "id": 7797080351, + "lat": 50.3452781, + "lon": 2.580115, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7798012878, + "lat": 43.5359817, + "lon": 5.2946849, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "1", + "operator": "EVLink", + "socket:schuko": "1", + "socket:type2": "1", + "voltage": "400" + } + }, + { + "type": "node", + "id": 7798074202, + "lat": 49.1332011, + "lon": -1.1752828, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7798175275, + "lat": 47.467209, + "lon": 5.2698071, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7798325301, + "lat": 49.615188, + "lon": 0.7737057, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7798538833, + "lat": 43.6512464, + "lon": 4.0715185, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34127001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 7798618362, + "lat": 48.2314006, + "lon": 2.7061385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "2 EUR", + "fee": "yes", + "network": "EcoCharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 7798710461, + "lat": 46.5597856, + "lon": 0.4971953, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B085", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7798963585, + "lat": 48.7479737, + "lon": 7.4634777, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7799329362, + "lat": 44.1801291, + "lon": 0.881928, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7799374302, + "lat": 43.584902, + "lon": 1.453285, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*021", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7801461556, + "lat": 43.2606036, + "lon": -0.68931, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "name": "Aren - Rue Carrère", + "note": "Type 2 charger", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7802133759, + "lat": 45.209106, + "lon": 3.9963266, + "tags": { + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "not:brand:wikidata": "Q17089620", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 7803251117, + "lat": 48.5527627, + "lon": -1.5053029, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7803295354, + "lat": 43.5313283, + "lon": 1.5336764, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "ref": "GSTE1;GSTE2", + "ref:EU:EVSE": "FR*S31*PLABEGEAUTAN", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7803424747, + "lat": 44.3620806, + "lon": 2.5640719, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7803424748, + "lat": 44.3620776, + "lon": 2.5640932, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7803424749, + "lat": 44.362074, + "lon": 2.5641199, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7803424750, + "lat": 44.3620699, + "lon": 2.5641501, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7803424751, + "lat": 44.3620668, + "lon": 2.5641727, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7803788605, + "lat": 48.0746853, + "lon": -0.6999792, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53034*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7803788606, + "lat": 48.121773, + "lon": -0.718523, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "TEM53", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "TE 53", + "ref:EU:EVSE": "FR*S53*P53140*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7806069531, + "lat": 48.5536681, + "lon": -1.5123021, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7806782306, + "lat": 49.1272875, + "lon": 2.534853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE Oise Charging Station", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7807757213, + "lat": 50.9783714, + "lon": 2.5799899, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 7807757214, + "lat": 50.9783549, + "lon": 2.5800008, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 7809195760, + "lat": 43.66838, + "lon": 1.378462, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "phone": "+33 805 021 480", + "ref:EU:EVSE": "FR*M31*P31056001", + "socket:type2": "6", + "socket:type3c": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7810199462, + "lat": 44.3620637, + "lon": 2.5641957, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7810199463, + "lat": 44.3620605, + "lon": 2.5642193, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7810199464, + "lat": 44.3620574, + "lon": 2.5642421, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Hager", + "model": "Witty premium XEV100", + "operator": "Maurel aveyron", + "owner": "UDSMA", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020", + "support": "pole" + } + }, + { + "type": "node", + "id": 7812122743, + "lat": 48.6668359, + "lon": 6.1786046, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "1€/1H", + "fee": "yes", + "official_name": "MGN_Piscine Michel Bertrand", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 7812464671, + "lat": 43.6582732, + "lon": 7.163511, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Station Cagnes-sur-Mer Général Leclerc", + "ref": "MAT-007144" + } + }, + { + "type": "node", + "id": 7812464672, + "lat": 43.6533003, + "lon": 7.1518108, + "tags": { + "amenity": "charging_station", + "operator": "Prise de Nice" + } + }, + { + "type": "node", + "id": 7812957658, + "lat": 48.6168878, + "lon": -2.028536, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "EDF" + } + }, + { + "type": "node", + "id": 7816907636, + "lat": 49.1131643, + "lon": 7.0648416, + "tags": { + "access": "yes", + "addr:city": "Sarreguemines", + "addr:street": "Place de la Poste", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "phone": "+33388688458", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "2 kW", + "source": "Survey;Freshmile.com", + "website": "http://www.freshmile.com" + } + }, + { + "type": "node", + "id": 7818385290, + "lat": 45.4685923, + "lon": 6.9056648, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "name": "Bosch eBike Power Station", + "operator": "Spar" + } + }, + { + "type": "node", + "id": 7819493405, + "lat": 46.944964, + "lon": -0.593893, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB73023A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7819701385, + "lat": 43.2081043, + "lon": 2.3849607, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Edenauto Premium BMW", + "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", + "operator": "Hyundai", + "operator:wikidata": "Q55931", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PEDENAUTOBMW110001", + "socket:type2": "4", + "socket:type2_combo": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 7820832985, + "lat": 43.0903673, + "lon": 2.6230234, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11185002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7822129352, + "lat": 49.8595462, + "lon": 4.6606142, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7822553082, + "lat": 49.1499364, + "lon": -0.2882565, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Grentheville, Rue Urbain Cardon", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET211", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822553083, + "lat": 49.1276452, + "lon": -0.3166776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET201", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7822553084, + "lat": 49.1505501, + "lon": -0.3508507, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Ifs, Avenue Jean Vilar", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET216", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566385, + "lat": 49.1550293, + "lon": -0.3320102, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Cormelles-le-Royal, Rue des Écoles", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET249", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566386, + "lat": 49.1719404, + "lon": -0.3033705, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Mondeville, Route de Rouen", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*E14437*3", + "scooter": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 7822566387, + "lat": 49.1721718, + "lon": -0.3184099, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Mondeville, Rue Emile Zola", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET176", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566388, + "lat": 49.1783469, + "lon": -0.3177249, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Mondeville, Rue Calmette", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET171", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566389, + "lat": 49.1606671, + "lon": -0.3426468, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Place de la Liberté", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET314", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566390, + "lat": 49.1611153, + "lon": -0.3605462, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Avenue du Père Charles de Foucauld", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET220", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566391, + "lat": 49.1377421, + "lon": -0.349508, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Ifs, Esplanade François Mitterrand", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET210", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7822566392, + "lat": 49.1395997, + "lon": -0.3551519, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "MobiSDEC" + } + }, + { + "type": "node", + "id": 7823100788, + "lat": 43.2109006, + "lon": 2.3606635, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Carcassonne - Place Gaston Jourdanne", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "ref:EU:EVSE": "FR*S11*P11069*004", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7823318874, + "lat": 44.4583934, + "lon": 6.0340723, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05170*D", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7823772928, + "lat": 46.0312612, + "lon": 3.9314257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Eborn" + } + }, + { + "type": "node", + "id": 7829010886, + "lat": 48.5680671, + "lon": -1.543335, + "tags": { + "access": "customers", + "addr:city": "Saint-Georges-de-Gréhaigne", + "addr:country": "FR", + "addr:postcode": "35610", + "addr:street": "Za Le Point du Jour", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Mont-Saint-Michel Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/montsaintmichelsupercharger" + } + }, + { + "type": "node", + "id": 7829864686, + "lat": 43.2513738, + "lon": 2.6531117, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11190001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7832175346, + "lat": 44.5166603, + "lon": 1.0816738, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de chargement", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46089*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7834183289, + "lat": 45.5042932, + "lon": 6.0730633, + "tags": { + "amenity": "charging_station", + "operator": "Eborn", + "survey:date": "2020-08-22" + } + }, + { + "type": "node", + "id": 7834516285, + "lat": 43.1057635, + "lon": 3.0864734, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7834516385, + "lat": 43.0329026, + "lon": 2.9562155, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7835282690, + "lat": 48.1889639, + "lon": 5.8833685, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Contrexéville - Aldi", + "opening_hours": "Mo-Sa 08:30-20:00", + "operator": "Aldi", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7835282691, + "lat": 48.1889567, + "lon": 5.883431, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Contrexéville - Aldi", + "opening_hours": "Mo-Sa 08:30-20:00", + "operator": "Aldi", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7835289054, + "lat": 48.2099441, + "lon": 5.8313174, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Bulgnéville - Rue du Rhulemoine", + "network": "Freshmile", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*FR1*EKBDH*1;FR*FR1*EKBDH*2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7835615877, + "lat": 47.3975552, + "lon": 5.1324957, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7836764002, + "lat": 49.8405952, + "lon": 3.3000845, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7837053757, + "lat": 45.1856887, + "lon": 6.4810181, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "note": "unknown (valloire.net)", + "opening_hours": "24/7", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7837055572, + "lat": 47.6234287, + "lon": -1.4524028, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44075A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7837726112, + "lat": 50.7463158, + "lon": 2.2516125, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*011", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 7837820811, + "lat": 48.4642841, + "lon": -2.7038068, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7838126454, + "lat": 43.636232, + "lon": 2.3176868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81042*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7838129868, + "lat": 43.6627729, + "lon": 2.3476245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81128*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7841031885, + "lat": 48.5252293, + "lon": -4.6021791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEF" + } + }, + { + "type": "node", + "id": 7847029031, + "lat": 45.191591, + "lon": 5.7696586, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "operator": "Grenoble Alpes Métropole" + } + }, + { + "type": "node", + "id": 7847514630, + "lat": 48.8290406, + "lon": -1.5798827, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7847656192, + "lat": 50.4812928, + "lon": 1.5898396, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Sobem Scame" + } + }, + { + "type": "node", + "id": 7852595430, + "lat": 45.2562494, + "lon": 5.0294521, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Eborn" + } + }, + { + "type": "node", + "id": 7856254609, + "lat": 43.897315, + "lon": 1.1352376, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7856254610, + "lat": 43.8973005, + "lon": 1.135307, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7856426075, + "lat": 47.5919963, + "lon": 7.5829191, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Place de l'Ancien Hôtel de Ville", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "output": "22 kW", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68149*C", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7857658627, + "lat": 49.4433058, + "lon": 1.0986481, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "level": "-1", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540010", + "socket:type2": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7857720219, + "lat": 47.2367269, + "lon": -0.0103048, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 7858158511, + "lat": 43.2697442, + "lon": 5.4216543, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "22kW", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13210*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7858244829, + "lat": 45.1831292, + "lon": 5.7715573, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "no", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "motorcar": "yes", + "name": "Espace Montagne Grenoble", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla": "2" + } + }, + { + "type": "node", + "id": 7858560623, + "lat": 43.6447319, + "lon": 4.0415157, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34176001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 7860840641, + "lat": 50.1298628, + "lon": 3.4283611, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "8", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Caudry", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PYOTRGWFRUD", + "socket:type2": "8", + "socket:typee": "8", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7860840642, + "lat": 50.1298742, + "lon": 3.4283086, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Scame" + } + }, + { + "type": "node", + "id": 7862331120, + "lat": 47.792592, + "lon": -2.5914699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56254*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7862360484, + "lat": 44.2566173, + "lon": 6.9220878, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Prise de Nice", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes" + } + }, + { + "type": "node", + "id": 7864863959, + "lat": 49.140018, + "lon": -0.3550774, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Ifs, Rue des Pyrénées", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET219", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7865055270, + "lat": 49.1783081, + "lon": -0.348081, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Rue Rosa Parks", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET145", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7865090596, + "lat": 49.1803588, + "lon": -0.3559394, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Place de la Résistance", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET124", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7865206176, + "lat": 46.9787271, + "lon": -0.2157898, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7865324294, + "lat": 47.8824736, + "lon": 6.7609907, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Schneider Electric", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Le Thillot - Colruyt", + "opening_hours": "24/7", + "operator": "DATS 24", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "BDOrtho IGN;survey" + } + }, + { + "type": "node", + "id": 7867401547, + "lat": 47.9936983, + "lon": 3.4383775, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89230*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7867689992, + "lat": 43.2866217, + "lon": 5.5949342, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689993, + "lat": 43.2866158, + "lon": 5.5948976, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689994, + "lat": 43.2866158, + "lon": 5.5948671, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689995, + "lat": 43.2866129, + "lon": 5.5948366, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689996, + "lat": 43.2866129, + "lon": 5.5948061, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689997, + "lat": 43.2866099, + "lon": 5.5947797, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689998, + "lat": 43.2866069, + "lon": 5.5947492, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867689999, + "lat": 43.2866055, + "lon": 5.5947208, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867690000, + "lat": 43.2868215, + "lon": 5.5948021, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867690001, + "lat": 43.2868185, + "lon": 5.5947716, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867690002, + "lat": 43.2868171, + "lon": 5.594737, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867690003, + "lat": 43.2868111, + "lon": 5.5947045, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867690004, + "lat": 43.2868097, + "lon": 5.594674, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7867690005, + "lat": 43.2868052, + "lon": 5.5946455, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Mota" + } + }, + { + "type": "node", + "id": 7868342224, + "lat": 49.1837001, + "lon": -0.3465316, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Avenue Pierre Berthelot", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET266", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868342225, + "lat": 49.1840701, + "lon": -0.3555936, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Quai de la Londe", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET132", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868342227, + "lat": 49.1841031, + "lon": -0.3645272, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Rue Gemare", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET258", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868342228, + "lat": 49.1761289, + "lon": -0.369986, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Avenue Albert Sorel", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET143", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868342229, + "lat": 49.1803578, + "lon": -0.3712465, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Place Guillouard", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET101", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868342230, + "lat": 49.1809586, + "lon": -0.3659644, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Place du Parvis Notre-Dame", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET266", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868542457, + "lat": 49.182139, + "lon": -0.4026713, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Boulevard Georges Pompidou", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET140", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868542458, + "lat": 49.1916481, + "lon": -0.3963153, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Avenue du Président Coty", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET242", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868542459, + "lat": 49.2040927, + "lon": -0.3802782, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET256", + "scooter": "yes", + "socket:type1": "1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7868542461, + "lat": 49.1991742, + "lon": -0.3651338, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Rue de la Défense Passive", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET180", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868542462, + "lat": 49.1975177, + "lon": -0.3474837, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Place Champlain", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET270", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868542463, + "lat": 49.1905143, + "lon": -0.341756, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Le Clos Joli", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET146", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7868598329, + "lat": 49.7955957, + "lon": 4.6361095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "AM 072 - Tournes - Esp Jean Bourguignon", + "operator": "Clem" + } + }, + { + "type": "node", + "id": 7869107127, + "lat": 45.0927944, + "lon": 1.9392847, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "3", + "fee": "no", + "opening_hours": "24/7", + "socket:schuko": "3", + "voltage": "230" + } + }, + { + "type": "node", + "id": 7869565533, + "lat": 45.5899464, + "lon": 5.2760766, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref:EU:EVSE": "FR*EBN*PUSPQX0MDQ8", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7869598141, + "lat": 49.1505935, + "lon": 0.9101425, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7871384105, + "lat": 49.1658041, + "lon": -0.4178127, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Bretteville-sur-Odon, Place de la Mairie", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET283", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7871384106, + "lat": 49.1608171, + "lon": -0.3992972, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Louvigny, Rue Édouard Boubat", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET305", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7871384107, + "lat": 49.1756367, + "lon": -0.4014831, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caen, Avenue Enchanteur Merlin", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET262", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 7871384111, + "lat": 49.1998454, + "lon": -0.3801347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET102", + "scooter": "yes", + "socket:type1": "1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7871705306, + "lat": 48.8008357, + "lon": 2.1290443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "ancienne borne autolib", + "operator": "Electric 55 Charging" + } + }, + { + "type": "node", + "id": 7872473580, + "lat": 47.096092, + "lon": 2.431443, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7876190473, + "lat": 46.9087185, + "lon": 6.3511739, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7876583729, + "lat": 45.4704732, + "lon": -0.1581084, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "phone": "+338 11 23 01 23", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3" + } + }, + { + "type": "node", + "id": 7876737066, + "lat": 48.8079924, + "lon": 2.0610631, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7876791380, + "lat": 48.8082512, + "lon": 2.0619644, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7876927368, + "lat": 48.8086239, + "lon": 2.0647943, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7878526484, + "lat": 49.4643203, + "lon": 6.1790999, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7878551286, + "lat": 49.4643485, + "lon": 6.179007, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7878551287, + "lat": 49.4643702, + "lon": 6.1789276, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7881789397, + "lat": 47.3463408, + "lon": -1.2844066, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44115A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7881903974, + "lat": 46.1252202, + "lon": 3.4265046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PVICHY6", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "survey", + "survey:date": "2020-09-05" + } + }, + { + "type": "node", + "id": 7883485557, + "lat": 47.0578124, + "lon": -1.4869328, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sydégo", + "opening_hours": "24/7", + "operator": "SYDELA", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44102A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7890343012, + "lat": 45.9219615, + "lon": 4.8100508, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Dombes Saône Vallée Communauté de communes" + } + }, + { + "type": "node", + "id": 7891288986, + "lat": 45.7528094, + "lon": 4.8380018, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 7 | Quai Claude Bernard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY705B;MAT-009029", + "ref:EU:EVSE": "FR*GLY*PLYON705B;FR*GLY*PLYON10221", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7892867091, + "lat": 49.3772736, + "lon": 3.3118197, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7892867487, + "lat": 49.3820625, + "lon": 3.3215449, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7893914407, + "lat": 43.3205728, + "lon": -0.3669689, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Renault" + } + }, + { + "type": "node", + "id": 7893947398, + "lat": 46.4671022, + "lon": 4.112288, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "socket:tesla_standard": "1" + } + }, + { + "type": "node", + "id": 7893947399, + "lat": 46.4671008, + "lon": 4.1122469, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "socket:tesla_standard": "1" + } + }, + { + "type": "node", + "id": 7893947400, + "lat": 46.4670975, + "lon": 4.1121458, + "tags": { + "amenity": "charging_station", + "fax": "+33 3 85 81 92 90", + "opening_hours": "Mo-Sa 09:00-19:30", + "phone": "+33 3 85 81 92 92", + "website": "http://www.e-leclerc.com/paray-le-monial/magasins-specialises/borne/info-bornehttp://www.e-leclerc.com/paray-le-monial/magasins-specialises/borne/info-bornes-electriquess-electriques" + } + }, + { + "type": "node", + "id": 7895097561, + "lat": 48.56923, + "lon": -2.8179502, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7898645385, + "lat": 49.2566858, + "lon": 4.0261317, + "tags": { + "amenity": "charging_station", + "fixme": "Emplacement précis ?", + "level": "-1", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 7899505289, + "lat": 49.4002645, + "lon": 3.1135352, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7899511489, + "lat": 49.4030868, + "lon": 3.1136605, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7899915381, + "lat": 49.2985687, + "lon": 2.8013376, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7900449641, + "lat": 43.1944009, + "lon": -0.6120597, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Oloron Sainte Marie - Parking de la Gare", + "network": "MObiVE", + "note": "Type 2 charger", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*90", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7900456089, + "lat": 43.1939309, + "lon": -0.6048327, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Oloron Sainte Marie - Place G Clémenceau", + "network": "MObiVE", + "note": "Type 2 charger", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*91", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7900636268, + "lat": 49.2360612, + "lon": 4.0697219, + "tags": { + "amenity": "charging_station", + "fixme": "Position à vérifier", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7900693941, + "lat": 49.2375314, + "lon": 4.0822306, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7900814150, + "lat": 45.4819004, + "lon": 0.380163, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*149", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7902298340, + "lat": 50.0749115, + "lon": 1.5354381, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PFRIVILLEESCAR", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7902975647, + "lat": 49.2060478, + "lon": 2.5897878, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Syndicat d’Énergie de l’Oise SE60" + } + }, + { + "type": "node", + "id": 7903007301, + "lat": 49.2568978, + "lon": 4.0312952, + "tags": { + "amenity": "charging_station", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7903007302, + "lat": 49.2523268, + "lon": 4.0291146, + "tags": { + "amenity": "charging_station", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7903007303, + "lat": 49.2498285, + "lon": 4.0360863, + "tags": { + "amenity": "charging_station", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7903035887, + "lat": 49.2443902, + "lon": 3.923443, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "name": "IONITY Gueux", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 7904665568, + "lat": 44.8783905, + "lon": -0.5711578, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 7905885080, + "lat": 49.2255467, + "lon": 4.0523102, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7906180296, + "lat": 43.5528348, + "lon": 1.5337009, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31506*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7912076156, + "lat": 49.2603556, + "lon": 4.0236846, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7912123958, + "lat": 49.3991493, + "lon": 2.9949546, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7912186706, + "lat": 48.9516358, + "lon": 4.3630651, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fixme": "Vérifier l'emplacement", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7912199107, + "lat": 48.9418, + "lon": 4.3897455, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7912294734, + "lat": 44.8341596, + "lon": 1.1652353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*141", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7912308815, + "lat": 48.9599744, + "lon": 4.3190551, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7912308816, + "lat": 48.9599365, + "lon": 4.3190109, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Borne de Recharge" + } + }, + { + "type": "node", + "id": 7912752845, + "lat": 48.7294151, + "lon": 2.1526786, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7913337559, + "lat": 44.6234819, + "lon": 6.2046282, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05004*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913343656, + "lat": 44.4649172, + "lon": 6.229178, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05050*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913385593, + "lat": 44.5628611, + "lon": 6.4985984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05046*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913385596, + "lat": 44.6841915, + "lon": 6.3257573, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05096*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913390573, + "lat": 44.5717692, + "lon": 6.6800799, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05177*D", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913418150, + "lat": 44.7807968, + "lon": 6.0281745, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05142*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913418163, + "lat": 44.6760714, + "lon": 5.9284917, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05139*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913423799, + "lat": 44.5431505, + "lon": 6.2781181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05040*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913427142, + "lat": 44.6428424, + "lon": 6.1691352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05029*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913432093, + "lat": 44.6991272, + "lon": 6.8660843, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05157*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913452253, + "lat": 45.0352529, + "lon": 6.4055781, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05079*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913466087, + "lat": 44.8249467, + "lon": 6.4984409, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05110*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913466753, + "lat": 44.6821898, + "lon": 6.0772943, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05132*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913467133, + "lat": 44.774891, + "lon": 6.0195007, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide ZA St Firmin", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05142*B", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "44", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913467201, + "lat": 44.8441074, + "lon": 6.4900303, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05175*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913467203, + "lat": 44.8171424, + "lon": 6.1938687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05064*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913482982, + "lat": 44.5610167, + "lon": 6.0817796, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "network": "Ville de Gap", + "opening_hours": "24/7", + "operator": "Electric 55 Charging", + "owner": "Ville de Gap", + "ref:EU:EVSE": "FR*09*PPDB*1101", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913492226, + "lat": 44.5358777, + "lon": 6.0101572, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05059*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913512757, + "lat": 44.4881354, + "lon": 5.7296477, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05008*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913530645, + "lat": 44.2726145, + "lon": 5.8127545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYME05", + "owner": "SYME05", + "ref:EU:EVSE": "FR*S05*P05118*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913576567, + "lat": 43.2794127, + "lon": -0.3558109, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*77", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913599163, + "lat": 43.2529028, + "lon": -0.052835, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*57", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7913599164, + "lat": 43.1255834, + "lon": -0.1992185, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*81", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7914062035, + "lat": 43.4466014, + "lon": -1.5094624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*21", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7914089909, + "lat": 43.5562616, + "lon": -1.2376837, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*86", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7914089910, + "lat": 43.4837907, + "lon": -1.1388428, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*36", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7914089911, + "lat": 43.3855502, + "lon": -1.3035868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*59", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916172926, + "lat": 43.6332443, + "lon": 5.097723, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7916178990, + "lat": 43.916908, + "lon": -0.4497005, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*75", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916179163, + "lat": 43.7877254, + "lon": -0.92282, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*74", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916179164, + "lat": 43.8351002, + "lon": -0.8142057, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*89", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916179983, + "lat": 43.6385066, + "lon": 5.0929909, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7916209832, + "lat": 44.1459189, + "lon": -0.9721014, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*58", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916209833, + "lat": 43.8494716, + "lon": -1.3594117, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*69", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916210250, + "lat": 43.7028396, + "lon": -0.9276574, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*63", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7916247165, + "lat": 44.2025754, + "lon": -1.2273603, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*68", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917257307, + "lat": 44.6188446, + "lon": -1.1245107, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*153", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917257308, + "lat": 44.635717, + "lon": -1.0715209, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*44", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917264849, + "lat": 44.6386239, + "lon": -1.0601945, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*43", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917283706, + "lat": 44.6307315, + "lon": -1.1489256, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*58", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917285607, + "lat": 44.6279134, + "lon": -0.9599143, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*154", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917310547, + "lat": 44.743875, + "lon": -1.1066442, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*1", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917310548, + "lat": 44.6642453, + "lon": -0.8265509, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*155", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917322454, + "lat": 44.7766945, + "lon": -1.050585, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S33*PMB33*158", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917322455, + "lat": 44.795769, + "lon": -1.1458263, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*75", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917326417, + "lat": 43.2747066, + "lon": 0.1739005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65369*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917332898, + "lat": 43.2678171, + "lon": 0.1068539, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Watt else?", + "opening_hours": "24/7", + "operator": "SDE65", + "owner": "SDE65", + "ref:EU:EVSE": "FR*S65*P65800*LECLERC", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917332899, + "lat": 43.2795688, + "lon": 0.1197994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65340*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7917914761, + "lat": 43.2532606, + "lon": 5.4218544, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7918022914, + "lat": 47.2452744, + "lon": 5.9888244, + "tags": { + "access": "permit", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "EvMeter", + "payment:contactless": "yes", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 7918362484, + "lat": 46.5711, + "lon": 0.37044, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B136", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7918386585, + "lat": 46.5711006, + "lon": 0.3704403, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B135", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7918386586, + "lat": 46.56869, + "lon": 0.37178, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B140", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7919506644, + "lat": 45.0051502, + "lon": -0.4367918, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEEG 33", + "ref:EU:EVSE": "FR*S33*PMB33*157", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7919949051, + "lat": 46.889383, + "lon": -1.0329803, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Les Herbiers Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/lesherbierssupercharger" + } + }, + { + "type": "node", + "id": 7920231095, + "lat": 47.8557218, + "lon": -2.8335456, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56141*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921020499, + "lat": 41.629397, + "lon": 9.3355861, + "tags": { + "access": "private", + "amenity": "charging_station", + "manufacturer": "SCHNEIDER", + "model": "EVlink Smart Wallbox", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey 2020;mapillary" + } + }, + { + "type": "node", + "id": 7921256708, + "lat": 44.6825281, + "lon": 1.2683857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46297*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921256709, + "lat": 44.7054549, + "lon": 1.4567453, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46258*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921268711, + "lat": 44.7424586, + "lon": 1.4425309, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46334*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921268712, + "lat": 44.7352661, + "lon": 1.3860171, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46127*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921279789, + "lat": 44.6654682, + "lon": 1.1948382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46184*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921280217, + "lat": 44.5023448, + "lon": 1.1924439, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46225*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921280218, + "lat": 44.5056749, + "lon": 1.1354467, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46231*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921290221, + "lat": 44.466087, + "lon": 1.4853726, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46149*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921290222, + "lat": 44.4952426, + "lon": 1.3862717, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46191*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921290223, + "lat": 44.4670893, + "lon": 1.4139785, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46224*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921290224, + "lat": 44.4557753, + "lon": 1.4434919, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46042*003", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921292929, + "lat": 44.8449438, + "lon": 1.5570651, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46144*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7921296033, + "lat": 44.6064146, + "lon": 2.0298927, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46102*001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923431941, + "lat": 43.6449398, + "lon": -1.4324457, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "Sur le parking en extrémité bordure de route", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*52", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923431942, + "lat": 43.6883363, + "lon": -1.2287517, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*76", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923434424, + "lat": 43.6131746, + "lon": -1.1261387, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*78", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923476691, + "lat": 43.6401237, + "lon": -1.224656, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*64", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923489391, + "lat": 43.7787428, + "lon": -1.2134974, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*67", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923489392, + "lat": 43.7081452, + "lon": -1.4306987, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*40", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923489393, + "lat": 43.6310029, + "lon": -1.3970222, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*49", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923502485, + "lat": 44.0306996, + "lon": -0.9243758, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*59", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923516638, + "lat": 43.828918, + "lon": -0.5012027, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*50", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923524052, + "lat": 50.252455, + "lon": 3.8616245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59617*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923524053, + "lat": 50.2368466, + "lon": 3.8828302, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59103*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923554241, + "lat": 50.2558603, + "lon": 4.0747645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59151*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923554242, + "lat": 50.2640991, + "lon": 4.181938, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59101*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923568821, + "lat": 50.4096769, + "lon": 3.1304261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*009", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923568822, + "lat": 50.397387, + "lon": 3.1023185, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923571600, + "lat": 50.3226149, + "lon": 4.0057684, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59072*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923571601, + "lat": 50.3125633, + "lon": 3.9925004, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59370*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923579845, + "lat": 50.2664611, + "lon": 3.9065022, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59424*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923588013, + "lat": 50.2725616, + "lon": 3.9723576, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805024579", + "ref:EU:EVSE": "FR*H02*P59392005", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7923599538, + "lat": 50.3308134, + "lon": 3.2514465, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes du Coeur d'Ostrevent", + "ref:EU:EVSE": "FR*H07*P59008*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923599539, + "lat": 50.3648261, + "lon": 3.3372698, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes du Coeur d'Ostrevent", + "ref:EU:EVSE": "FR*H07*P59314*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923603503, + "lat": 50.3687799, + "lon": 3.5513933, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59544*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923607959, + "lat": 49.9729101, + "lon": 3.9193196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923610386, + "lat": 50.1706312, + "lon": 3.8565607, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59406*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923610387, + "lat": 50.2644741, + "lon": 3.9624537, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59365*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923621702, + "lat": 50.3317384, + "lon": 3.2327454, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes du Coeur d'Ostrevent", + "ref:EU:EVSE": "FR*H07*P59024*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923628237, + "lat": 50.367374, + "lon": 3.0802313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*004", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923628238, + "lat": 50.362117, + "lon": 3.1160455, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59569*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923633075, + "lat": 50.666846, + "lon": 1.6034275, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62746*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923639078, + "lat": 50.2807323, + "lon": 3.1046336, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59015*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923644095, + "lat": 50.3733775, + "lon": 3.0899511, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*007", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923644096, + "lat": 50.3677687, + "lon": 3.0743324, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*013", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923645615, + "lat": 50.3368758, + "lon": 3.1003285, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59170*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923645647, + "lat": 50.3463169, + "lon": 3.1164169, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59170*003", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923648483, + "lat": 50.3808006, + "lon": 3.083203, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923648484, + "lat": 50.3818977, + "lon": 3.0923349, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*015", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923648961, + "lat": 50.3506176, + "lon": 3.0400634, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59329*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923648962, + "lat": 50.3720303, + "lon": 3.0595787, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59178*017", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923656067, + "lat": 50.390375, + "lon": 3.1690172, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59327*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923656068, + "lat": 50.4257916, + "lon": 3.1824658, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59239*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923656185, + "lat": 50.387373, + "lon": 3.1020617, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59654*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923656186, + "lat": 50.3833284, + "lon": 3.0569457, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59165*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923660941, + "lat": 50.3778902, + "lon": 3.2159901, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes du Coeur d'Ostrevent", + "ref:EU:EVSE": "FR*H07*P59456*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923661600, + "lat": 50.4106042, + "lon": 3.1081136, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59509*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923663618, + "lat": 50.7522668, + "lon": 2.2658139, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*004", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923663619, + "lat": 50.7513658, + "lon": 2.2504806, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*008", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923663620, + "lat": 50.756085, + "lon": 2.2477219, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62757*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923663719, + "lat": 50.5686734, + "lon": 1.9066405, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes du Haut-Pays Montreuillois", + "ref:EU:EVSE": "FR*H12*P62463*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923664636, + "lat": 50.7034659, + "lon": 2.2512969, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62423*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923665845, + "lat": 50.6197229, + "lon": 2.2129034, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62265*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923725543, + "lat": 50.7783448, + "lon": 2.1946513, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62819*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923725544, + "lat": 50.7576338, + "lon": 2.2614483, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*006", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923737019, + "lat": 50.7301505, + "lon": 2.3327721, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62040*002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923737020, + "lat": 50.6930457, + "lon": 2.3569032, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62684*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923737021, + "lat": 50.6702101, + "lon": 2.2904312, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62288*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923752473, + "lat": 48.9913571, + "lon": 2.2843815, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "LBGU1", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/LBGU1" + } + }, + { + "type": "node", + "id": 7923770995, + "lat": 50.7317657, + "lon": 2.2958929, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62040*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923782133, + "lat": 46.7112305, + "lon": -1.9626741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85226*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923782134, + "lat": 46.6977598, + "lon": -1.9258137, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85222*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923784798, + "lat": 50.7448375, + "lon": 2.250076, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923784799, + "lat": 50.7403999, + "lon": 2.2614385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62525*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923786648, + "lat": 50.7538128, + "lon": 2.2697456, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923786649, + "lat": 50.7538801, + "lon": 2.2595894, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923788796, + "lat": 50.866147, + "lon": 1.86069, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté de Communes du Pays d'Opale", + "ref:EU:EVSE": "FR*H11*P62397*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923788797, + "lat": 46.7128538, + "lon": -1.9780718, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85226*002", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 7923812423, + "lat": 50.8054193, + "lon": 2.1538333, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62297*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923812424, + "lat": 50.7965342, + "lon": 2.174289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62458*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923812456, + "lat": 50.7055441, + "lon": 1.5932261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62643*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923820387, + "lat": 50.7153457, + "lon": 1.609383, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62160*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923820388, + "lat": 50.7278936, + "lon": 1.6424662, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62758*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923827925, + "lat": 46.697354, + "lon": -1.760171, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85070*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923827926, + "lat": 46.6062724, + "lon": -1.8356723, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85243*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923837001, + "lat": 46.7389843, + "lon": -1.3860255, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85081*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923838715, + "lat": 46.8443286, + "lon": -1.8790953, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85047*002", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923838716, + "lat": 47.000719, + "lon": -2.2494512, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85163*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923843398, + "lat": 46.5969372, + "lon": -1.4523617, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85008*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923843404, + "lat": 46.6898743, + "lon": -1.0542655, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85051*002", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7923843405, + "lat": 46.6862864, + "lon": -1.0517202, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85051*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7924331727, + "lat": 48.979831, + "lon": 2.2722267, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JFJJ1", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JFJJ1" + } + }, + { + "type": "node", + "id": 7924755856, + "lat": 46.9755632, + "lon": -0.2165606, + "tags": { + "amenity": "charging_station", + "name": "Alter base" + } + }, + { + "type": "node", + "id": 7924959074, + "lat": 48.8514071, + "lon": 1.8798103, + "tags": { + "access": "yes", + "addr:city": "Beynes", + "addr:street": "Cc de La Petite Mauldre", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "G20 Beynes", + "ref": "FR-BE1-E78062-001-1;FR-BE1-E78062-001-2", + "ref:EU:EVSE": "FR*BE1*P78062*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "7.4kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7924959075, + "lat": 48.8513873, + "lon": 1.8798705, + "tags": { + "access": "yes", + "addr:city": "Beynes", + "addr:street": "Cc de La Petite Mauldre", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "G20 Beynes", + "ref": "FR-BE1-E78062-001-3;FR-BE1-E78062-001-4", + "ref:EU:EVSE": "FR*BE1*P78062*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "7.4kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7924963131, + "lat": 48.8314809, + "lon": 1.9431045, + "tags": { + "access": "yes", + "addr:street": "Avenue du 19 Mars 1962", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7924987086, + "lat": 48.8469311, + "lon": 2.6745057, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "note": "Sûrement réservée aux employés de l'agglomération" + } + }, + { + "type": "node", + "id": 7925233485, + "lat": 49.5705929, + "lon": 3.6241088, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7925475017, + "lat": 43.2888538, + "lon": 5.4595089, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13211*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7925485291, + "lat": 48.5538002, + "lon": 2.1248674, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7928335657, + "lat": 45.0436956, + "lon": 3.892423, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "name": "Ombrière Pôle Intermodal", + "opening_hours": "24/7", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 7928335658, + "lat": 45.0428231, + "lon": 3.8917159, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Pôle intermodal", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7928335659, + "lat": 45.0498806, + "lon": 3.8988212, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Parking de Montredon", + "opening_hours": "24/7", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 7928335661, + "lat": 45.0486226, + "lon": 3.8763626, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 7928335662, + "lat": 44.9913798, + "lon": 3.9433189, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Arsac en Velay", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7928335663, + "lat": 45.1210465, + "lon": 3.9073508, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Lavoûte sur Loire", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7928335665, + "lat": 45.1964589, + "lon": 3.7103176, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Allègre", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7928335666, + "lat": 45.3205966, + "lon": 3.6968024, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "La Chaise Dieu", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7928600721, + "lat": 48.6226023, + "lon": -3.2061762, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "2", + "fee": "yes", + "name": "ChargePoint", + "operator": "SDE Côtes d'Armor", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 7929159127, + "lat": 47.0552382, + "lon": -1.5137633, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44223A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7931358860, + "lat": 45.0476881, + "lon": 3.8768034, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Place de la Libération", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7931376672, + "lat": 45.1338759, + "lon": 3.81189, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Saint-Paulien", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7931437664, + "lat": 45.3321815, + "lon": 3.8457418, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Craponne - PLace de la Poste", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7931465648, + "lat": 45.3337189, + "lon": 3.8513514, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "name": "Craponne - Place de la Gare", + "opening_hours": "24/7", + "socket:type2": "2", + "supervised": "no" + } + }, + { + "type": "node", + "id": 7931895101, + "lat": 43.1376085, + "lon": 1.6072648, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 7932710530, + "lat": 50.8039482, + "lon": 2.3336979, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "owner": "Syndicat intercommunal d'énergie de Flandre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H14*P59119001", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7937788192, + "lat": 42.680109, + "lon": 2.9349222, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66028*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7938591786, + "lat": 48.8474686, + "lon": 2.3884582, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9012*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7938598685, + "lat": 48.8474377, + "lon": 2.3881034, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9012*02", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7938602085, + "lat": 48.8474527, + "lon": 2.3883053, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9012*02", + "scooter": "yes", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7938713007, + "lat": 48.8480731, + "lon": 2.3937106, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "note": "Les places sont resérvées à la recharge électrique ou aux véhicules partagés du réseau Mobilib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 7939025197, + "lat": 48.8480661, + "lon": 2.3936543, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "note": "Les places sont resérvées à la recharge électrique ou aux véhicules partagés du réseau Mobilib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 7939025198, + "lat": 48.8480881, + "lon": 2.393889, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "note": "Les places sont resérvées à la recharge électrique ou aux véhicules partagés du réseau Mobilib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 7939025199, + "lat": 48.8480855, + "lon": 2.3938461, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "note": "Les places sont resérvées à la recharge électrique ou aux véhicules partagés du réseau Mobilib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 7939025200, + "lat": 48.8480793, + "lon": 2.3938058, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "note": "Les places sont resérvées à la recharge électrique ou aux véhicules partagés du réseau Mobilib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 7939025201, + "lat": 48.8480775, + "lon": 2.3937549, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "note": "Les places sont resérvées à la recharge électrique ou aux véhicules partagés du réseau Mobilib'", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 7941325085, + "lat": 50.6431494, + "lon": 3.0155531, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7941698578, + "lat": 48.8921684, + "lon": 2.2448636, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "level": "-2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7941698579, + "lat": 48.8922001, + "lon": 2.2449406, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "level": "-2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7941698580, + "lat": 48.8922322, + "lon": 2.2450184, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "level": "-2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7941698581, + "lat": 48.892266, + "lon": 2.2451004, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "level": "-2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7941698582, + "lat": 48.8922988, + "lon": 2.24518, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "level": "-2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 7942691785, + "lat": 45.3913151, + "lon": 4.2857707, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes", + "network": "e-Totem", + "operator": "Saint-Étienne Métropole", + "website": "http://www.e-totem.fr" + } + }, + { + "type": "node", + "id": 7942728284, + "lat": 47.8369527, + "lon": -0.3016011, + "tags": { + "access": "customers", + "amenity": "charging_station", + "charging_station:output": "22 kW", + "motorcar": "yes", + "name": "La Borne E. Leclerc" + } + }, + { + "type": "node", + "id": 7943159059, + "lat": 43.7861172, + "lon": 4.0869923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30321*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7944974870, + "lat": 45.5451985, + "lon": 5.971287, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7945524861, + "lat": 43.1537827, + "lon": -0.5018006, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "note": "Type 2 charger", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7947037466, + "lat": 50.0609882, + "lon": 1.3663213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE76" + } + }, + { + "type": "node", + "id": 7947044079, + "lat": 50.0624613, + "lon": 1.3702561, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "SDE76" + } + }, + { + "type": "node", + "id": 7947068878, + "lat": 50.1831846, + "lon": 1.6435041, + "tags": { + "amenity": "charging_station", + "amperage": "16;32", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PSTVALPERREE", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7951905791, + "lat": 50.9033958, + "lon": 2.2210573, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 7952164628, + "lat": 50.7768858, + "lon": 2.5542828, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat intercommunal d'énergie de Flandre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H14*P59546001", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 7954962364, + "lat": 48.6975725, + "lon": 2.61434, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7959257983, + "lat": 43.1164803, + "lon": 6.2011986, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7959568684, + "lat": 46.5653601, + "lon": 0.6426027, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B027", + "socket:type2": "2", + "socket:typee": "2", + "source": "photograph" + } + }, + { + "type": "node", + "id": 7960170108, + "lat": 45.7865667, + "lon": 6.0543748, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74138*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7960171759, + "lat": 48.6615372, + "lon": -3.6248247, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 7960242996, + "lat": 47.3659239, + "lon": -1.4048848, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44179A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7966218386, + "lat": 47.9302311, + "lon": -2.1279724, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56075*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7966256372, + "lat": 48.2575389, + "lon": 7.397013, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7966304185, + "lat": 47.6704716, + "lon": -2.7884973, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*N", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 7966631818, + "lat": 43.3056426, + "lon": -0.3525296, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "network": "EVlink", + "operator": "CAPBP", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7966631819, + "lat": 43.3056016, + "lon": -0.3525291, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "network": "EVlink", + "operator": "CAPBP", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7966631820, + "lat": 43.3056284, + "lon": -0.3526944, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "network": "EVlink", + "operator": "CAPBP", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7966631821, + "lat": 43.3055846, + "lon": -0.3526947, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Schneider Electric", + "network": "EVlink", + "operator": "CAPBP", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 7968405330, + "lat": 48.2822328, + "lon": 6.9678207, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Chemin du Coucheux", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 7968468996, + "lat": 48.2877272, + "lon": 6.9469791, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7968468997, + "lat": 48.2881051, + "lon": 6.9481417, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Rue des Capucins", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:type2_cable": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 7973228685, + "lat": 48.7175941, + "lon": -3.9693846, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "level": "0" + } + }, + { + "type": "node", + "id": 7973688102, + "lat": 43.5511613, + "lon": 1.1910363, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7973905598, + "lat": 46.1225765, + "lon": 3.4191933, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PVICHY4", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "survey", + "start_date": "2016", + "survey:date": "2020-09-19" + } + }, + { + "type": "node", + "id": 7975985224, + "lat": 49.2569058, + "lon": 4.0344261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 7978273566, + "lat": 49.4386959, + "lon": 1.0952472, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Métropole Rouen Normandie", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*C01*P76540012", + "socket:type2": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 7979002978, + "lat": 46.3371332, + "lon": 6.5225811, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74157*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7980851259, + "lat": 46.180418, + "lon": 2.3282147, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 7981970488, + "lat": 50.3982084, + "lon": 3.0856194, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59234*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7982479465, + "lat": 47.1952315, + "lon": 0.1833129, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7983959075, + "lat": 43.1163975, + "lon": -0.8641444, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "description": "Type 2 charger", + "name": "Tardets - Parking du Lavoir", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7984144489, + "lat": 43.0951394, + "lon": -0.7150676, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Arette - Route d'Issor", + "note": "Type 2 charger", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7985104846, + "lat": 4.9439038, + "lon": -52.3087122, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "EZDrive" + } + }, + { + "type": "node", + "id": 7985519437, + "lat": 42.987446, + "lon": -0.4281164, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "Laruns - Parking Médiathèque", + "note": "Type 2 charger", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7985606589, + "lat": 43.1033371, + "lon": -0.4294845, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "Arudy - Rue Des Ecoles", + "note": "Type 2 charger", + "operator": "SDEPA - MObiVE" + } + }, + { + "type": "node", + "id": 7988298942, + "lat": 43.6047556, + "lon": 1.2829826, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31417*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7988367485, + "lat": 48.1364499, + "lon": -1.9381049, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "operator": "Super U", + "socket:type2": "yes", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 7991978697, + "lat": 48.9121034, + "lon": 2.1772999, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 7993464091, + "lat": 43.6517159, + "lon": 3.5404331, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34114*004", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 7995033758, + "lat": 49.4462729, + "lon": 2.0953626, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22kW" + } + }, + { + "type": "node", + "id": 7995111539, + "lat": 49.4383964, + "lon": 2.1170781, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "8", + "fee": "no", + "socket:schuko": "8", + "socket:type2": "8", + "socket:type2:output": "18kW", + "time": "9H-20H" + } + }, + { + "type": "node", + "id": 7995767694, + "lat": 47.2848288, + "lon": 0.1722005, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 7998024827, + "lat": 48.6712934, + "lon": 5.8933885, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 8000368780, + "lat": 48.8113976, + "lon": 2.5709691, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8000368781, + "lat": 48.8087913, + "lon": 2.5732499, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8000671988, + "lat": 45.5034749, + "lon": 6.0370221, + "tags": { + "amenity": "charging_station", + "operator": "ZEborne", + "survey:date": "2020-10-12" + } + }, + { + "type": "node", + "id": 8000863480, + "lat": 49.4117179, + "lon": 1.0724766, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76681*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8000975224, + "lat": 43.6194174, + "lon": 3.8203739, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*010", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8002166785, + "lat": 43.4017315, + "lon": 0.1991114, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8002620845, + "lat": 50.6810831, + "lon": 1.6277204, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62746*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8003239569, + "lat": 43.5266731, + "lon": -0.915531, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8003239570, + "lat": 43.5266657, + "lon": -0.9155077, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8006698713, + "lat": 47.7985645, + "lon": 3.5774007, + "tags": { + "amenity": "charging_station", + "name": "freshmile" + } + }, + { + "type": "node", + "id": 8007857833, + "lat": 43.6524889, + "lon": 3.5047083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34239*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8008881060, + "lat": 48.9686442, + "lon": 2.2661392, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JHVP", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JHVP2" + } + }, + { + "type": "node", + "id": 8009472679, + "lat": 47.6815734, + "lon": 3.6905868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SDEY", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89130*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8010280735, + "lat": 48.5180975, + "lon": -2.7652873, + "tags": { + "amenity": "charging_station", + "brand": "Brev'Car", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "operator": "Syndicat Départemental d’Énergie", + "operator:website": "https://www.sde22.fr/bornes-de-charge-pour-v-hicules", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "1", + "socket:type3:output": "22kW" + } + }, + { + "type": "node", + "id": 8010315199, + "lat": 48.5227281, + "lon": -2.7515338, + "tags": { + "amenity": "charging_station", + "brand": "Brev'Car", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Brev'Car", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "operator": "Syndicat Départemental d’Énergie", + "operator:website": "https://www.sde22.fr/bornes-de-charge-pour-v-hicules", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:type3": "1", + "socket:type3:output": "22kW" + } + }, + { + "type": "node", + "id": 8012270448, + "lat": 46.9192738, + "lon": 0.2130479, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B073", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8012753385, + "lat": 46.3398996, + "lon": 2.6095404, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PMONTLUCONGI", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8016496814, + "lat": 50.4915214, + "lon": 2.5856707, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Lidl Charging Station", + "operator": "Virta", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8017414590, + "lat": 48.6114405, + "lon": 6.1013208, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 8019456731, + "lat": 45.3632776, + "lon": 5.5936591, + "tags": { + "amenity": "charging_station", + "operator": "eborn", + "socket:chademo": "1", + "socket:type2_cable": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 8022717778, + "lat": 43.5503914, + "lon": 1.5376208, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31506*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8024490601, + "lat": 49.6303881, + "lon": 5.166793, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8024576361, + "lat": 43.6963477, + "lon": -0.3784514, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 8027259044, + "lat": 49.25313, + "lon": 3.9804444, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVlink", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8027259045, + "lat": 49.2531843, + "lon": 3.9802137, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVlink", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8032218082, + "lat": 46.8544704, + "lon": 0.9292238, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8032328064, + "lat": 47.8175421, + "lon": -2.8122327, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56042*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8032380173, + "lat": 48.9801019, + "lon": 2.2744148, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 8032500006, + "lat": 43.6993883, + "lon": -0.3804752, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "fee": "yes", + "name": "Tesla Destination Charger", + "not:brand:wikidata": "Q17089620", + "operator": "Le Relais des Champs", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 8036355829, + "lat": 43.7047257, + "lon": 4.6413601, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "operator": "l'entrepôt du bricolage (green'up)" + } + }, + { + "type": "node", + "id": 8036355830, + "lat": 43.7047014, + "lon": 4.6411296, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "operator": "l'entrepôt du bricolage (green'up)" + } + }, + { + "type": "node", + "id": 8037709873, + "lat": 47.4226805, + "lon": -0.5567277, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49278*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 8038160210, + "lat": 43.3508223, + "lon": 1.4774701, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8039826485, + "lat": 43.5210595, + "lon": -0.0880734, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Nexans", + "survey:date": "2020-10-23" + } + }, + { + "type": "node", + "id": 8042090308, + "lat": 49.2710184, + "lon": 4.0700615, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 8042090309, + "lat": 49.2710429, + "lon": 4.0701741, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 8042352171, + "lat": 47.2495734, + "lon": -1.584372, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8042745993, + "lat": 44.1897736, + "lon": 1.3600692, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "image": "https://upload.wikimedia.org/wikipedia/commons/e/e0/Borne_de_recharge_de_Molieres.jpg", + "motorcar": "yes", + "name": "Molières, Perrine", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "SDE 82", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:debit_cards": "yes", + "ref:EU:EVSE": "FRS82PMOLIERES", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Etalab / IRVE - 2023-05-02;survey", + "start_date": "2017-05-11", + "survey:date": "2020-10-22", + "voltage": "230", + "website": "https://charge.freshmile.com/location/molieres", + "wikimedia_commons": "File:Borne de recharge de Molieres.jpg" + } + }, + { + "type": "node", + "id": 8042885749, + "lat": 47.2317455, + "lon": -0.1191823, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "opening_hours": "24/7", + "operator": "Siéml", + "owner": "SIEML 49", + "protected": "bollard", + "ref:EU:EVSE": "FR*S49*P49123*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8043157244, + "lat": 48.064049, + "lon": -0.8074415, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8044003522, + "lat": 44.520868, + "lon": 5.7522908, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8044050585, + "lat": 43.9995282, + "lon": 4.7002796, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Tavel Sud", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "survey:date": "2020-10-25" + } + }, + { + "type": "node", + "id": 8047380667, + "lat": 44.2412847, + "lon": 6.6265807, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref:EU:EVSE": "FR*EBN*PYVGSKBCI4J", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8047413854, + "lat": 43.2892037, + "lon": 5.4002059, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13205*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8050718427, + "lat": 49.2451004, + "lon": 4.0258043, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Nexans", + "ref": "41687;41688" + } + }, + { + "type": "node", + "id": 8050829092, + "lat": 49.2647785, + "lon": 4.0253987, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8050829098, + "lat": 49.2652716, + "lon": 4.0258523, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8057336873, + "lat": 46.2217695, + "lon": 6.3118818, + "tags": { + "access": "customers", + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8058480994, + "lat": 43.3423709, + "lon": 6.6912418, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "ROQUEBRUNE SUR ARGENS_Boulevard Des Murenes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref": "QQPZ1", + "ref:EU:EVSE": "FR*S83*P83107*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8058767367, + "lat": 45.2171191, + "lon": 6.4726181, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8059974446, + "lat": 49.2147607, + "lon": 4.0471777, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8059974447, + "lat": 49.2147819, + "lon": 4.0471993, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8059974448, + "lat": 49.2148, + "lon": 4.047227, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8061791305, + "lat": 47.1934973, + "lon": -0.2735209, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8062405445, + "lat": 43.3394345, + "lon": -1.4463654, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne chargement véhicules éléctriques" + } + }, + { + "type": "node", + "id": 8062635017, + "lat": 45.4241303, + "lon": 1.5633607, + "tags": { + "amenity": "charging_station", + "name": "borne de recharge" + } + }, + { + "type": "node", + "id": 8062661702, + "lat": 48.9534687, + "lon": 2.1947967, + "tags": { + "amenity": "charging_station", + "capacity": "10" + } + }, + { + "type": "node", + "id": 8063338553, + "lat": 47.8070172, + "lon": -0.1672927, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8063338554, + "lat": 47.8070358, + "lon": -0.1671663, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8063338555, + "lat": 47.8070288, + "lon": -0.1672109, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8063338556, + "lat": 47.8070239, + "lon": -0.1672522, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8063548686, + "lat": 48.9784111, + "lon": 2.2423696, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JPFP", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JPFP1" + } + }, + { + "type": "node", + "id": 8064827150, + "lat": 48.9686345, + "lon": 2.2661743, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JHVP", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JHVP1" + } + }, + { + "type": "node", + "id": 8064919207, + "lat": 46.881532, + "lon": -0.055385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB24056A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8065419631, + "lat": 43.2859232, + "lon": -0.3913436, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Médiathèque de Jurançon", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref": "MAT-012972", + "ref:EU:EVSE": "FR*S64*PMB64*64", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8065691797, + "lat": 47.8025737, + "lon": 3.5656286, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8068925987, + "lat": 48.8963386, + "lon": 2.2985073, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Parking de la Gare" + } + }, + { + "type": "node", + "id": 8068925988, + "lat": 48.8933007, + "lon": 2.2989501, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Parking So Ouest" + } + }, + { + "type": "node", + "id": 8068925989, + "lat": 48.8974508, + "lon": 2.2890823, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Parking Jules Guesde" + } + }, + { + "type": "node", + "id": 8068946703, + "lat": 45.8277586, + "lon": -0.872238, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8072455249, + "lat": 48.8916486, + "lon": 2.3690893, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX19*05", + "socket:type2": "7", + "socket:typee": "7", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8074027256, + "lat": 48.9783967, + "lon": 2.2423576, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JPFP", + "source": "survey 2020", + "website": "https://my.freshmile.com/charge/JPFP2" + } + }, + { + "type": "node", + "id": 8075044393, + "lat": 49.2501833, + "lon": 4.0273234, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8075044394, + "lat": 49.2501598, + "lon": 4.0285912, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8075271047, + "lat": 50.833131, + "lon": 2.2123269, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "SIECF", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8076856432, + "lat": 48.6796849, + "lon": 2.3441973, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8076891388, + "lat": 48.6788071, + "lon": 2.3415646, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8078395913, + "lat": 43.2893501, + "lon": 5.3962127, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13205*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8080840553, + "lat": 49.2653983, + "lon": -0.4061642, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET301", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8081726895, + "lat": 43.533101, + "lon": 1.2259145, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8087750457, + "lat": 44.755592, + "lon": -0.5294323, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8088820648, + "lat": 47.5257819, + "lon": -2.6480699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56252*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 02/2021" + } + }, + { + "type": "node", + "id": 8089217622, + "lat": 48.8283913, + "lon": 2.6419944, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 8091579901, + "lat": 49.41191, + "lon": 0.859653, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76436*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8093395372, + "lat": 47.8012848, + "lon": 3.5275541, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SDEY", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89346*B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8093395373, + "lat": 47.8086882, + "lon": 3.5345896, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "SDEY", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89346*C", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8093958067, + "lat": 49.516641, + "lon": 0.880119, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76631*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8097334599, + "lat": 48.6962637, + "lon": 2.3498027, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8100283138, + "lat": 43.4217905, + "lon": -0.5986939, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity Lacq Audéjos Sud", + "network": "Ionity", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu" + } + }, + { + "type": "node", + "id": 8100383827, + "lat": 49.2402335, + "lon": -0.3272386, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET233", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8104186279, + "lat": 48.8084551, + "lon": -3.3728912, + "tags": { + "amenity": "charging_station", + "operator": "SDE22" + } + }, + { + "type": "node", + "id": 8104186280, + "lat": 48.812912, + "lon": -3.3583745, + "tags": { + "amenity": "charging_station", + "operator": "SDE22" + } + }, + { + "type": "node", + "id": 8106788463, + "lat": 47.1372112, + "lon": -0.8914174, + "tags": { + "amenity": "charging_station", + "amperage": "22 kVA", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "network:website": "https://www.sieml.fr", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*S49*P49193*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://ouestcharge.fr/cartedesbornes" + } + }, + { + "type": "node", + "id": 8108463370, + "lat": 45.3497595, + "lon": 5.5983205, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "E-Born", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kw", + "source": "https://fr.chargemap.com" + } + }, + { + "type": "node", + "id": 8108565753, + "lat": 49.8482735, + "lon": 1.5688068, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*50*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8109895919, + "lat": 48.7997806, + "lon": 2.0670932, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8112208173, + "lat": 43.6762808, + "lon": 3.8191223, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de chargement pour voiture électrique", + "network": "Intermarché", + "opening_hours": "24/7", + "operator": "Intermarché", + "owner": "Intermarché", + "source": "locale" + } + }, + { + "type": "node", + "id": 8112567910, + "lat": 48.6719403, + "lon": 5.8897448, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 8113499572, + "lat": 43.6966502, + "lon": 1.8164178, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Reveo", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81140*004", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8113950527, + "lat": 47.1401869, + "lon": -0.936215, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8118176799, + "lat": 48.1239378, + "lon": 6.5151715, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Arches - Acacias", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:type2": "2", + "socket:type2:output": "7 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 8120339108, + "lat": 43.4940627, + "lon": -1.4661752, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Syndicats Départemantaux d'énergie" + } + }, + { + "type": "node", + "id": 8120694636, + "lat": 45.0555115, + "lon": 6.0342473, + "tags": { + "addr:city": "Le Bourg-d'Oisans", + "addr:postcode": "38520", + "addr:street": "Rue des Colporteurs", + "amenity": "charging_station", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Eborn", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:chademo": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 8121657062, + "lat": 49.6525093, + "lon": 1.6159521, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*73*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8123448413, + "lat": 45.1716899, + "lon": 5.4124026, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge pour vélo électrique", + "operator": "https://bike-energy.com/" + } + }, + { + "type": "node", + "id": 8127218057, + "lat": 48.9692423, + "lon": -0.2420435, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET105", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8130418769, + "lat": 43.4362556, + "lon": -1.454622, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S64*PMB6412611", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8131368139, + "lat": 43.8822455, + "lon": -1.145051, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*53", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8132837777, + "lat": 49.2041072, + "lon": -0.3976751, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8136328088, + "lat": 45.7165238, + "lon": 4.8762057, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "operator": "Carrefour" + } + }, + { + "type": "node", + "id": 8137623242, + "lat": 49.7739898, + "lon": 4.7179574, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ardennes Métropole" + } + }, + { + "type": "node", + "id": 8137623243, + "lat": 49.7739965, + "lon": 4.7179177, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ardennes Métropole" + } + }, + { + "type": "node", + "id": 8140051917, + "lat": 42.6875224, + "lon": 2.9239165, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8143022960, + "lat": 48.3296345, + "lon": 4.1011086, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "17.3", + "fee": "yes", + "operator": "SDE Aube" + } + }, + { + "type": "node", + "id": 8143022961, + "lat": 48.3296309, + "lon": 4.1011969, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8144095147, + "lat": 49.669462, + "lon": 0.896854, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*12*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8145521106, + "lat": 44.702471, + "lon": 4.7992406, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8145774799, + "lat": 44.6504072, + "lon": 0.0835306, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8145893917, + "lat": 14.6176868, + "lon": -61.0242381, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "9cts/km or 5cts/km pour abonnés", + "fee": "yes", + "survey:date": "2020-11-20" + } + }, + { + "type": "node", + "id": 8145910319, + "lat": 14.6162242, + "lon": -61.023964, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "survey:date": "2020-11-20" + } + }, + { + "type": "node", + "id": 8147166715, + "lat": 43.4240859, + "lon": 5.9902753, + "tags": { + "access": "customers", + "addr:city": "Brignoles", + "addr:postcode": "83170", + "addr:street": "A8 - Aire de Cambarette", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Cambarette Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedecambarettesupercharger" + } + }, + { + "type": "node", + "id": 8147166716, + "lat": 43.4241014, + "lon": 5.990172, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "name": "IONITY Cambarette Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 8150686650, + "lat": 43.5532013, + "lon": 3.7295456, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34088*001" + } + }, + { + "type": "node", + "id": 8152516848, + "lat": 46.7769913, + "lon": 6.337557, + "tags": { + "amenity": "charging_station", + "fixme": "Trouver l'emplacement et ajouter des informations complémentaires." + } + }, + { + "type": "node", + "id": 8152516849, + "lat": 46.7770271, + "lon": 6.3375798, + "tags": { + "amenity": "charging_station", + "fixme": "Trouver l'emplacement et ajouter des informations complémentaires." + } + }, + { + "type": "node", + "id": 8152516852, + "lat": 46.7624329, + "lon": 6.3177381, + "tags": { + "amenity": "charging_station", + "fixme": "Trouver l'emplacement et ajouter des informations complémentaires." + } + }, + { + "type": "node", + "id": 8152516854, + "lat": 46.7897231, + "lon": 6.3696402, + "tags": { + "amenity": "charging_station", + "fixme": "Vérifier l'emplacement et ajouter des informations détaillées." + } + }, + { + "type": "node", + "id": 8152525821, + "lat": 47.42415, + "lon": 5.8387472, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8155340619, + "lat": 48.7554364, + "lon": 2.3582612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8155340620, + "lat": 48.755531, + "lon": 2.3581687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8155932141, + "lat": 48.842903, + "lon": 6.0688875, + "tags": { + "amenity": "charging_station", + "source": "knowledge;Ortho HR" + } + }, + { + "type": "node", + "id": 8162341785, + "lat": 50.3110082, + "lon": 2.7496813, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté Urbaine d'Arras", + "ref:EU:EVSE": "FR*H06*P62037*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8162449816, + "lat": 49.6362234, + "lon": -1.6285931, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "https://www.e-charge50.fr/charge-points/CU-CHER-CHER5-50100-1", + "operator": "SDEM50", + "ref": "CU-CHER-CHER5-50100" + } + }, + { + "type": "node", + "id": 8164409928, + "lat": 45.6330006, + "lon": 4.4560883, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Rhône Syder" + } + }, + { + "type": "node", + "id": 8164748809, + "lat": 43.7555539, + "lon": 4.515362, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bellegarde - Rue Fanfonne Guillerme", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30034*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8164748810, + "lat": 43.8514969, + "lon": 4.6275311, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Vallabrègues - Boulevard Émile Jamais", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30336*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8165063438, + "lat": 45.3593333, + "lon": 5.5952001, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "yes", + "fee": "no", + "name": "Super U", + "socket:schuko": "2", + "socket:type3": "2", + "socket:type3:output": "22kW", + "socket:type3c": "2", + "socket:typee": "2", + "socket:typee:output": "3KW" + } + }, + { + "type": "node", + "id": 8168312146, + "lat": 48.0360124, + "lon": 4.9213156, + "tags": { + "access": "yes", + "addr:city": "Châteauvillain", + "addr:housenumber": "9", + "addr:postcode": "52120", + "addr:street": "Rue du Parc et du 24 Août 1944", + "amenity": "charging_station", + "amperage": "30", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "1 EUR/unit", + "covered": "no", + "email": "sded52@sded52.fr", + "fee": "yes", + "name": "Station de Recharge - Rue du Parc", + "name:en": "EV Charging Station - Rue du Parc", + "opening_hours": "24/7", + "opening_hours:covid19": "same", + "operator": "SDED 52", + "parking:fee": "no", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "phone": "+33 3 25 35 09 29", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "start_date": "2020-11-20", + "voltage": "6000", + "website": "https://mobilite.sded52.fr" + } + }, + { + "type": "node", + "id": 8168312147, + "lat": 48.0313211, + "lon": 4.9130546, + "tags": { + "access": "yes", + "addr:city": "Châteauvillain", + "addr:housenumber": "5", + "addr:postcode": "52120", + "addr:street": "Route de Chatillon", + "amenity": "charging_station", + "amperage": "30", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "charge": "1 EUR/unit", + "covered": "no", + "email": "sded52@sded52.fr", + "fee": "yes", + "name": "Station de Recharge - Route de Chatillon", + "name:en": "EV Charging Station - Route de Chatillon", + "opening_hours": "24/7", + "opening_hours:covid19": "same", + "operator": "SDED 52", + "parking:fee": "no", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "phone": "+33 3 25 35 09 29", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "start_date": "2020-11-20", + "voltage": "6000", + "website": "https://mobilite.sded52.fr" + } + }, + { + "type": "node", + "id": 8168460570, + "lat": 48.9681304, + "lon": -1.4689924, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8168460571, + "lat": 48.9681013, + "lon": -1.4689723, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8170530571, + "lat": 43.8759088, + "lon": -0.4918739, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 8175275599, + "lat": 48.7986499, + "lon": 2.3267689, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "contact:phone": "0 805 021 480", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94016*001", + "socket:type2": "4", + "socket:type2:output": "7.4 kW", + "socket:typee": "4", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 8175992624, + "lat": 43.90603, + "lon": -0.4746455, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8175992625, + "lat": 43.9060535, + "lon": -0.4745901, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 8176073004, + "lat": 49.0736578, + "lon": -0.2985192, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET232", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8176935248, + "lat": 49.0349669, + "lon": -0.3035562, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET280", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8177551108, + "lat": 46.2654384, + "lon": 4.884932, + "tags": { + "amenity": "charging_station", + "operator": "Schneider Electric" + } + }, + { + "type": "node", + "id": 8177698247, + "lat": 49.0143461, + "lon": -0.2685699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET260", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8179101076, + "lat": 48.9655881, + "lon": 3.322761, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Charge & Stop", + "note": "Recharge via le service freshmilecharge.com\n2 prises possibles par emplacement : 16A/3kW et 32A/22kW", + "operator": "USEDA - DIRVE 02", + "payment:electronic_purses": "yes" + } + }, + { + "type": "node", + "id": 8179785608, + "lat": 44.2259329, + "lon": 5.9135862, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8179785609, + "lat": 44.2259304, + "lon": 5.9136191, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8179785610, + "lat": 44.2259209, + "lon": 5.9135768, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8179785611, + "lat": 44.2259163, + "lon": 5.9135461, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8185284034, + "lat": 47.720336, + "lon": -2.9990559, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56023*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8185551029, + "lat": 48.5744505, + "lon": -3.8522124, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "etotem / atomelec" + } + }, + { + "type": "node", + "id": 8192068289, + "lat": 43.6392315, + "lon": 5.1079237, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8195358743, + "lat": 43.6299095, + "lon": 5.1763985, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8196060680, + "lat": 49.2420269, + "lon": -0.8696499, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bornes voitures électriques", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET141", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8196381120, + "lat": 49.3463422, + "lon": 2.9054834, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Jean-aux-Bois, Rue du Couvent", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SEZEO 60 - Tranche 2", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PBYSSRF", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8197603401, + "lat": 43.6081584, + "lon": 2.2374699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81065*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8197619919, + "lat": 43.6076858, + "lon": 2.2409239, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81065*004", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8197621434, + "lat": 46.0298194, + "lon": 4.0856501, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobiloire", + "opening_hours": "24/7", + "operator": "SIEL42", + "owner": "LE COTEAU", + "ref:EU:EVSE": "FRS42P42071A1", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8198844895, + "lat": 43.114589, + "lon": 1.6117891, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Révéo", + "ref:EU:EVSE": "FR*S09*P09225*002" + } + }, + { + "type": "node", + "id": 8201404063, + "lat": 43.1205833, + "lon": 6.0696174, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Mouv Élec Var", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83047*D", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8203422115, + "lat": 49.2699574, + "lon": 4.0257199, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "manufacturer": "Nexans" + } + }, + { + "type": "node", + "id": 8204687428, + "lat": 43.5967988, + "lon": 1.6002996, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31163*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204690555, + "lat": 43.5869047, + "lon": 1.4923702, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*008", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204692289, + "lat": 43.5850671, + "lon": 1.5308882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31445*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204693666, + "lat": 43.5643905, + "lon": 1.4895809, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*007", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204716237, + "lat": 43.5250571, + "lon": 1.3429167, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31588*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204716484, + "lat": 43.6237663, + "lon": 1.497078, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31044*002", + "socket:type2": "4", + "socket:type3c": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204721725, + "lat": 43.5376129, + "lon": 1.3447221, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31157*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204730065, + "lat": 43.6100858, + "lon": 1.4564145, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204736176, + "lat": 43.6697083, + "lon": 1.4297583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31022*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204742039, + "lat": 43.6113663, + "lon": 1.3352147, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31149*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204748222, + "lat": 43.6162996, + "lon": 1.2427801, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31088*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204748456, + "lat": 43.6658575, + "lon": 1.5042352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31488*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204750722, + "lat": 43.6557954, + "lon": 1.4813114, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31561*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204753911, + "lat": 43.674043, + "lon": 1.45583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31282*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204761160, + "lat": 43.7116986, + "lon": 1.3934256, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31293*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204763539, + "lat": 43.6960581, + "lon": 1.3481505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31541*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204772322, + "lat": 43.6828576, + "lon": 1.3180678, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31032*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204783602, + "lat": 43.7426223, + "lon": 1.3702811, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31490*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204790726, + "lat": 43.6934518, + "lon": 1.4131808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31467*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204790727, + "lat": 43.6933807, + "lon": 1.4278936, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31116*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204797683, + "lat": 43.9149599, + "lon": 1.3088327, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Montbartier", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204799829, + "lat": 43.727435, + "lon": 1.4113256, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31091*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204834646, + "lat": 44.0873066, + "lon": 2.7044697, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12299*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204834651, + "lat": 44.032796, + "lon": 2.536963, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12197*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204840024, + "lat": 44.190896, + "lon": 2.6621548, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12011*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204861198, + "lat": 43.9547951, + "lon": 2.5814852, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12080*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204861932, + "lat": 44.0890664, + "lon": 2.4402342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12127*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204863803, + "lat": 44.4295096, + "lon": 2.4124833, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12066*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204876965, + "lat": 43.8165542, + "lon": 2.7525473, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12025*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204879190, + "lat": 44.0637891, + "lon": 2.9837378, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12225*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204885536, + "lat": 44.0091208, + "lon": 3.1531719, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12063*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204889800, + "lat": 44.5873239, + "lon": 2.2322702, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12130*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204903332, + "lat": 44.1885952, + "lon": 2.360477, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12169*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204912132, + "lat": 44.27727, + "lon": 2.4325421, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12056*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204913274, + "lat": 44.1297755, + "lon": 2.9301475, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12062*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204916148, + "lat": 44.3084727, + "lon": 2.2417143, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12198*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204919796, + "lat": 44.2370387, + "lon": 2.0328926, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12105*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204927401, + "lat": 44.3840777, + "lon": 2.8234687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12120*002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204934011, + "lat": 44.5426701, + "lon": 2.3070668, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12100*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204937489, + "lat": 44.4641032, + "lon": 2.9757399, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12224*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204939102, + "lat": 44.688702, + "lon": 2.6593554, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12209*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204939578, + "lat": 44.4096939, + "lon": 2.2878382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12199*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204940057, + "lat": 44.5911292, + "lon": 2.9223994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12214*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204940137, + "lat": 44.3238903, + "lon": 3.0573176, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12270*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204941260, + "lat": 44.4452137, + "lon": 3.1103593, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12237*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204952602, + "lat": 44.5746478, + "lon": 2.0828764, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12052*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204955167, + "lat": 44.6044797, + "lon": 2.243305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12101*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204955948, + "lat": 44.5586245, + "lon": 2.2567208, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12089*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204956368, + "lat": 44.7369608, + "lon": 2.6791434, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12250*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204961692, + "lat": 44.8008968, + "lon": 2.7603222, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12223*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8204969769, + "lat": 44.6835121, + "lon": 2.8477146, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12119*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8209357532, + "lat": 43.2393848, + "lon": 5.3969195, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "newmotion" + } + }, + { + "type": "node", + "id": 8210494998, + "lat": 47.6686024, + "lon": -2.9819971, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56007*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210502413, + "lat": 47.8614091, + "lon": -2.8859999, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56174*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210517186, + "lat": 47.7580484, + "lon": -2.8426526, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56067*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210533569, + "lat": 47.6530939, + "lon": -2.9157306, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56167*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210534896, + "lat": 47.5678891, + "lon": -2.9435973, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56116*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210538232, + "lat": 47.7039178, + "lon": -2.95039, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "opendata56@morbihan-energies.fr", + "fee": "yes", + "moped": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Morbihan Energies", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S56*PWMRUPK", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8210540102, + "lat": 47.6580135, + "lon": -2.7721433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*K", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210542084, + "lat": 47.7425068, + "lon": -2.6810318, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56137*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210542089, + "lat": 47.5007858, + "lon": -2.379841, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56004*A", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210543364, + "lat": 47.9059312, + "lon": -2.123401, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56075*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210544928, + "lat": 47.6389574, + "lon": -2.9489303, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56262*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210545615, + "lat": 47.5792965, + "lon": -2.6293941, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56248*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210545616, + "lat": 47.517877, + "lon": -2.581604, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56052*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210547887, + "lat": 47.6183265, + "lon": -2.9185054, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "opendata56@morbihan-energies.fr", + "fee": "yes", + "moped": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Morbihan Energies", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S56*PYLFQUA", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8210549716, + "lat": 47.6576806, + "lon": -3.2043486, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56055*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210553097, + "lat": 47.5221575, + "lon": -2.7760134, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56240*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210553098, + "lat": 47.5249991, + "lon": -2.7699247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56240*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210554925, + "lat": 47.549736, + "lon": -2.8910574, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56005*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210555277, + "lat": 47.4817802, + "lon": -3.1216811, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56186*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210558871, + "lat": 47.5018786, + "lon": -2.8332088, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56214*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210561224, + "lat": 47.670902, + "lon": -2.7680723, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56260*F", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210564104, + "lat": 47.7162875, + "lon": -2.7637308, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56132*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210564204, + "lat": 47.7781822, + "lon": -2.6897418, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56157*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210564205, + "lat": 47.7336168, + "lon": -2.5908958, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56053*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210567421, + "lat": 47.6823595, + "lon": -2.6141878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56255*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210572978, + "lat": 47.9186908, + "lon": -2.8192644, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56140*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210574748, + "lat": 47.9190848, + "lon": -2.2811462, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56006*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210579004, + "lat": 47.9111041, + "lon": -2.723766, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56204*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210580708, + "lat": 47.7641057, + "lon": -3.240833, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56094*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210583408, + "lat": 47.9204228, + "lon": -2.3884324, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*256*P56165*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210585872, + "lat": 47.5990149, + "lon": -3.1124483, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56168*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210586465, + "lat": 47.8380467, + "lon": -2.6418036, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56172*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210590302, + "lat": 47.9385851, + "lon": -2.5633318, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56070*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210593336, + "lat": 47.6414621, + "lon": -3.1569393, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56054*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210599577, + "lat": 47.6529605, + "lon": -3.0704547, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56161*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210600254, + "lat": 47.5845692, + "lon": -3.0786522, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56034*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210601277, + "lat": 47.9257163, + "lon": -3.045736, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56207*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210772211, + "lat": 49.1383143, + "lon": 0.371776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET175", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210790170, + "lat": 48.0709113, + "lon": -3.188811, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56113*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210806252, + "lat": 47.712149, + "lon": -3.3102899, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56193*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210806904, + "lat": 47.6415255, + "lon": -3.4487661, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56069*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210812105, + "lat": 48.84481, + "lon": -0.5540812, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET245", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210823778, + "lat": 47.8875931, + "lon": -3.3367605, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56040*A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210831045, + "lat": 47.7341847, + "lon": -3.4989101, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56162*C", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210836511, + "lat": 47.9791709, + "lon": -3.1101775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56128*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210837420, + "lat": 47.9576824, + "lon": -2.9722405, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56173*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210841136, + "lat": 47.8756156, + "lon": -3.3228006, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56029*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210853160, + "lat": 47.9778189, + "lon": -3.2816214, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56089*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210853161, + "lat": 48.1452708, + "lon": -3.3893261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56170*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210874175, + "lat": 49.3918823, + "lon": 0.2066545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET149", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210882484, + "lat": 47.83423, + "lon": -3.1596321, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*P56101*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8210990186, + "lat": 48.8925965, + "lon": -0.2018247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET165", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211011414, + "lat": 48.8328904, + "lon": -0.1142426, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61303A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211026115, + "lat": 48.9728493, + "lon": -0.0455042, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET202", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211029397, + "lat": 48.9201024, + "lon": -0.7680117, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET300", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211029928, + "lat": 48.9081887, + "lon": -0.2071644, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*E14258*4", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211036606, + "lat": 49.0535362, + "lon": 0.2972926, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET274", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211036928, + "lat": 49.0045152, + "lon": 0.1498514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET103", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211036929, + "lat": 49.0053742, + "lon": 0.151612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET104", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211048953, + "lat": 49.195833, + "lon": 0.357187, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET244", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211077501, + "lat": 48.8891751, + "lon": -0.924642, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET106", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211081589, + "lat": 49.1081974, + "lon": 0.2900035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET203", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211093115, + "lat": 48.8572801, + "lon": -0.6060025, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET282", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211104337, + "lat": 49.3831439, + "lon": 0.2033828, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET255", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211111099, + "lat": 49.2453751, + "lon": 0.2734402, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET172", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211119830, + "lat": 49.4085775, + "lon": 0.269156, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET153", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211119945, + "lat": 49.3170174, + "lon": 0.2697373, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET296", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211121573, + "lat": 48.9175941, + "lon": -0.4817157, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET214", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211123054, + "lat": 48.8373098, + "lon": -0.8858888, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET113", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211123065, + "lat": 48.8405933, + "lon": -0.8909216, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*E14762*6", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211124038, + "lat": 48.8729296, + "lon": -0.4116566, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET157", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211129975, + "lat": 48.8448841, + "lon": -0.9019392, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET114", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211129976, + "lat": 48.8494495, + "lon": -0.8823449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET111", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211130527, + "lat": 48.9200119, + "lon": -0.5763605, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET252", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211137204, + "lat": 48.7929919, + "lon": -1.0079128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET222", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211138723, + "lat": 48.8005293, + "lon": -0.9007287, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET273", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211139164, + "lat": 48.8254515, + "lon": -0.9773181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET205", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211140607, + "lat": 49.3482635, + "lon": 0.1858904, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET265", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211148847, + "lat": 48.8237452, + "lon": -1.1046633, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET213", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211149210, + "lat": 48.840979, + "lon": -1.0485295, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET119", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211156855, + "lat": 48.8723355, + "lon": -0.9139308, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET275", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211162093, + "lat": 49.0207258, + "lon": -0.7391312, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET294", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211162362, + "lat": 48.9374445, + "lon": -0.8404579, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET228", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211164734, + "lat": 49.1245584, + "lon": 0.2770202, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET174", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211169618, + "lat": 49.0025, + "lon": -0.7531508, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET297", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211174347, + "lat": 49.137066, + "lon": 0.2023605, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET204", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211182127, + "lat": 49.251033, + "lon": 0.2205769, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET197", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211182180, + "lat": 49.0716047, + "lon": -0.0731359, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET134", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211183682, + "lat": 49.3656489, + "lon": 0.0803097, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET193", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211184040, + "lat": 49.0207572, + "lon": -0.0306932, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET120", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211184043, + "lat": 49.1469203, + "lon": 0.2688019, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*E14366*3", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211184048, + "lat": 49.4023296, + "lon": 0.1384571, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET291", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211184049, + "lat": 49.3388174, + "lon": 0.0276717, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET231", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211186093, + "lat": 49.1410862, + "lon": -0.0095513, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET152", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211186939, + "lat": 49.2048918, + "lon": 0.0798938, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET217", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211188842, + "lat": 49.306449, + "lon": -0.0291387, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET268", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211191450, + "lat": 49.2999945, + "lon": 0.2123594, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET253", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211203124, + "lat": 49.2300851, + "lon": -0.0450067, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET298", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211224567, + "lat": 49.7197167, + "lon": 0.7874889, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*68*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211224568, + "lat": 49.7197166, + "lon": 0.787489, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*74*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211229195, + "lat": 49.0216362, + "lon": -0.6332126, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET144", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211229423, + "lat": 49.2879841, + "lon": -0.0989595, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET239", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211232919, + "lat": 49.1362328, + "lon": -0.082789, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET292", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211234421, + "lat": 49.3201221, + "lon": -1.1015808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET139", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8211241357, + "lat": 49.0907042, + "lon": -0.8063897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET293", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212158065, + "lat": 49.0442364, + "lon": -0.3264967, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET121", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212209552, + "lat": 49.0247644, + "lon": -0.292243, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET259", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212223045, + "lat": 49.0575167, + "lon": -0.215132, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "e-Totem", + "model": "e-Premium", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Saint-Sylvain, Impasse des Semences", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*SOD*S*SDEC224*1", + "scooter": "yes", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2": "1", + "socket:type2:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 8212237512, + "lat": 49.085382, + "lon": -0.4242493, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET206", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212238017, + "lat": 49.1005831, + "lon": -0.1514627, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Valambray, Rue du Pressoir", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET243", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8212250851, + "lat": 48.9897176, + "lon": -0.4818378, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*E14689*3", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212257684, + "lat": 49.1137682, + "lon": -0.4037518, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET304", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212263338, + "lat": 48.9855638, + "lon": -0.4784402, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET212", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212271254, + "lat": 49.1525233, + "lon": -0.3716598, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Fleury-sur-Orne, Avenue d'Harcourt", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET221", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8212275159, + "lat": 49.0855581, + "lon": -0.4393375, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET200", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212276731, + "lat": 48.9863686, + "lon": -0.4729631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET209", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212279199, + "lat": 49.1286338, + "lon": -0.4222304, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET267", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8212286442, + "lat": 49.101243, + "lon": -0.5048461, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Évrecy, Rue de la Cabottière", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET128", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8215050215, + "lat": 49.1356311, + "lon": -0.5263913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET257", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215063118, + "lat": 49.1425348, + "lon": -0.4577388, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET235", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215158767, + "lat": 49.1850399, + "lon": -0.4414606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET288", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215171468, + "lat": 49.1770927, + "lon": -0.266272, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET194", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215184713, + "lat": 49.2945907, + "lon": -0.3763269, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET236", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215185103, + "lat": 49.1886917, + "lon": -0.3080255, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Colombelles, Rue Irène Joliot-Curie", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "ref:EU:EVSE": "FR*T14*P*ET251", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8215192176, + "lat": 49.2023944, + "lon": -0.3453784, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET129", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215192492, + "lat": 49.2131217, + "lon": -0.3428834, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET320", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215214659, + "lat": 49.2865646, + "lon": -0.3131176, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET186", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215217909, + "lat": 49.2020947, + "lon": -0.3326119, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET156", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215218546, + "lat": 49.2263449, + "lon": -0.3030948, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET218", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8215232136, + "lat": 49.2206905, + "lon": -0.3742146, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET215", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218689711, + "lat": 49.2122768, + "lon": -0.5146594, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET142", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218696005, + "lat": 49.2863724, + "lon": -0.5380367, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET285", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218704139, + "lat": 49.1952113, + "lon": -0.5451541, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET177", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218709227, + "lat": 49.2768155, + "lon": -0.4583779, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET279", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218709228, + "lat": 49.2745502, + "lon": -0.4529213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET278", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218712505, + "lat": 49.2778381, + "lon": -0.5681312, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET127", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218726167, + "lat": 49.180556, + "lon": -0.4971901, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET290", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218729095, + "lat": 49.3433522, + "lon": -0.5169762, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET126", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218730875, + "lat": 49.3876144, + "lon": -1.0412372, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET136", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218733339, + "lat": 49.2907509, + "lon": -0.5663847, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET287", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218738497, + "lat": 49.2921003, + "lon": -0.6497115, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET261", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218744862, + "lat": 49.2669038, + "lon": -0.6739266, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET310", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218745327, + "lat": 49.2200072, + "lon": -0.6778858, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET161", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218745919, + "lat": 49.3740536, + "lon": -0.9045602, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET138", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218747053, + "lat": 49.1767821, + "lon": -0.6242503, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET173", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218761166, + "lat": 49.2407829, + "lon": -0.7501106, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET125", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218763356, + "lat": 49.1299686, + "lon": -0.8561939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET302", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218766453, + "lat": 49.3088179, + "lon": -0.9029369, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET272", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218766659, + "lat": 49.1584207, + "lon": -0.761403, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET312", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218770129, + "lat": 49.1827661, + "lon": -0.8340656, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET263", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218770385, + "lat": 49.2195432, + "lon": -0.7896536, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET307", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218809638, + "lat": 48.9077755, + "lon": 0.7479546, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref:EU:EVSE": "FR*S27*PNEUVELYRE*CENTRE", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218811905, + "lat": 49.0241979, + "lon": 0.4193372, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET162", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218845002, + "lat": 46.9922915, + "lon": 2.5100146, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218945628, + "lat": 46.6423176, + "lon": 2.2834223, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218951114, + "lat": 47.2546963, + "lon": 3.6828601, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58083*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218952151, + "lat": 46.8684674, + "lon": 3.6461943, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58046*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218974481, + "lat": 46.7641277, + "lon": 3.4377581, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58293*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8218994428, + "lat": 47.4588472, + "lon": 3.5215293, + "tags": { + "amenity": "charging_station", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58079*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8221586129, + "lat": 49.2282864, + "lon": -0.2980868, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET223", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8221743318, + "lat": 50.4327619, + "lon": 3.5795088, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H03*P59253001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8221847478, + "lat": 49.441501, + "lon": 1.087753, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Métropole Rouen Normandie", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*C01*P76540019", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8222890732, + "lat": 46.8508942, + "lon": -0.4958167, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8223611809, + "lat": 47.1918709, + "lon": -0.2758827, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8223611810, + "lat": 47.2350019, + "lon": -0.429756, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8223627218, + "lat": 47.2658314, + "lon": -0.5049476, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8223627219, + "lat": 47.3039431, + "lon": -0.6275332, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8223642620, + "lat": 47.2115414, + "lon": -0.4640652, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8224055551, + "lat": 49.233865, + "lon": -0.2927978, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8225401965, + "lat": 49.386311, + "lon": 2.7768293, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8225705813, + "lat": 49.788321, + "lon": 0.6375274, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*61*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8227825476, + "lat": 45.0218432, + "lon": 0.5398452, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*142", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8230999427, + "lat": 45.9456636, + "lon": -0.5177896, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT-013266", + "ref:EU:EVSE": "FR*S17*PMB17811", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 8231518554, + "lat": 46.76305, + "lon": 0.48267, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B075", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8234053617, + "lat": 48.5466406, + "lon": -2.791073, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8235655762, + "lat": 49.7373576, + "lon": 0.3147371, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*88*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8235655763, + "lat": 49.7373507, + "lon": 0.3147599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*77*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8240095559, + "lat": 48.4490571, + "lon": 1.2523438, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28116*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8242505316, + "lat": 44.8365571, + "lon": -0.6054309, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Bluecub" + } + }, + { + "type": "node", + "id": 8242562517, + "lat": 44.8416039, + "lon": -0.6283008, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Bluecub" + } + }, + { + "type": "node", + "id": 8243433476, + "lat": 43.2870627, + "lon": 5.6031428, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "La Métropole", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8243433477, + "lat": 43.2843913, + "lon": 5.5452831, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "La Métropole", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8243433478, + "lat": 43.2956484, + "lon": 5.5667132, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Aubagne", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8245458592, + "lat": 47.1400291, + "lon": -1.2816896, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Sydégo", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44108A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8246154517, + "lat": 47.3780592, + "lon": -2.5472551, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "name": "Piriac sur Mer", + "name:br": "Penc'herieg", + "source:name:br": "ofis publik ar brezhoneg", + "survey:date": "2020-12-21" + } + }, + { + "type": "node", + "id": 8251107847, + "lat": 49.0483657, + "lon": -1.0026162, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8251134902, + "lat": 46.0112842, + "lon": 4.3765736, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8255520799, + "lat": 47.205485, + "lon": -1.307135, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44079A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255525435, + "lat": 48.7250571, + "lon": 2.2722061, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de Rechargement", + "operator": "Communauté d’Agglomération Paris-Saclay" + } + }, + { + "type": "node", + "id": 8255546767, + "lat": 47.162907, + "lon": -1.268571, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44212B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255549178, + "lat": 47.19593, + "lon": -1.432675, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44071B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255562607, + "lat": 47.1781777, + "lon": -1.3409886, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44032A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255564613, + "lat": 47.200016, + "lon": -1.430135, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44071A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255580905, + "lat": 47.155328, + "lon": -1.399953, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44070A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255581026, + "lat": 47.236772, + "lon": -1.349169, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44084A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255584556, + "lat": 47.16296, + "lon": -1.266139, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44212A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255593935, + "lat": 47.1011713, + "lon": -1.3005588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "model": "Diva SP", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44064A", + "socket:type2": "2", + "socket:type2:output": "22000", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255602038, + "lat": 47.183363, + "lon": -1.182186, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44140A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8255616469, + "lat": 47.362484, + "lon": -1.605544, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44066A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8257552107, + "lat": 48.5325058, + "lon": 2.05579, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 8258223630, + "lat": 48.7452401, + "lon": -3.2612309, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "SDE22", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 8259766664, + "lat": 49.7699602, + "lon": 4.1802764, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2", + "voltage": "400" + } + }, + { + "type": "node", + "id": 8259873945, + "lat": 49.1135293, + "lon": 4.0294075, + "tags": { + "amenity": "charging_station", + "operator": "Nexans" + } + }, + { + "type": "node", + "id": 8259877229, + "lat": 49.1460819, + "lon": 2.4418873, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8259877230, + "lat": 49.1501081, + "lon": 2.4250154, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8260105305, + "lat": 48.8388743, + "lon": 0.5107437, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Te61 Charging Station", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61167A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8261877446, + "lat": 47.192816, + "lon": 5.3838603, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "siceco" + } + }, + { + "type": "node", + "id": 8262558206, + "lat": 46.79024, + "lon": 0.18378, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B115", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8262645467, + "lat": 49.5620159, + "lon": 3.6275384, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "DIRVE 02 Aisne", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S02*PLAONDEPART", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8263618183, + "lat": 47.1305872, + "lon": 1.0004103, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "note": "Il faut aller demander le cable d'alimentation à l'office du tourisme tout proche", + "operator": "Office du tourisme Loches Sud Touraine" + } + }, + { + "type": "node", + "id": 8264044718, + "lat": 42.8737364, + "lon": 2.1825235, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYADEN 11", + "ref:EU:EVSE": "FR*S11*P11304002", + "scooter": "yes", + "socket:schuko": "1", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8264216494, + "lat": 46.7587926, + "lon": 0.0968227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B038", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8264666818, + "lat": 46.5981205, + "lon": 0.3525058, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B012", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8265286391, + "lat": 46.9079306, + "lon": 6.3363191, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "authentication:none": "no", + "capacity": "1", + "description": "Clé d'accès à la borne remis sur présentation d'une pièce d'identité.", + "fee": "no", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "parking:fee": "no", + "ref": "EVH2S3P04KF", + "serial_number": "3N2047208004001", + "socket:type2": "1", + "socket:type2:output": "3.7 kW", + "support": "wall_mounted", + "voltage": "230" + } + }, + { + "type": "node", + "id": 8269197072, + "lat": 47.4492869, + "lon": -0.532705, + "tags": { + "amenity": "charging_station", + "name": "Borne Concession KIA" + } + }, + { + "type": "node", + "id": 8269197073, + "lat": 47.4494278, + "lon": -0.5321224, + "tags": { + "amenity": "charging_station", + "name": "Borne concession Nissan" + } + }, + { + "type": "node", + "id": 8272517945, + "lat": 49.0664131, + "lon": -0.7673521, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8274263941, + "lat": 43.5893371, + "lon": 5.1934734, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8274263942, + "lat": 43.5893443, + "lon": 5.1934564, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8274263943, + "lat": 43.5893499, + "lon": 5.1934356, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8274263944, + "lat": 43.5893566, + "lon": 5.1934017, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8275131458, + "lat": 48.868308, + "lon": 2.0966908, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8283759285, + "lat": 48.9302302, + "lon": 2.3011714, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "network": "Sigeif", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Syndicat intercommunal pour le gaz et l'électricité en Île-de-France", + "owner": "Sigeif", + "payment:credit_cards": "no", + "phone": "+33 9 72 66 80 01", + "ref:EU:EVSE": "FR*SIG*PSIGE13551", + "scooter": "no", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "truck": "no" + } + }, + { + "type": "node", + "id": 8284069771, + "lat": 48.8965306, + "lon": 2.2380206, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8286171939, + "lat": 45.1372044, + "lon": 5.7023023, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "P+R L'Étoile" + } + }, + { + "type": "node", + "id": 8286196123, + "lat": 45.1377301, + "lon": 5.7024729, + "tags": { + "amenity": "charging_station", + "brand": "Alizé", + "capacity": "2", + "name": "P+R L'Étoile" + } + }, + { + "type": "node", + "id": 8287827801, + "lat": 48.7171802, + "lon": 2.3673662, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8291520220, + "lat": 46.7711335, + "lon": 6.3782235, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "operator": "Intermarché" + } + }, + { + "type": "node", + "id": 8294896064, + "lat": 49.4587891, + "lon": 1.3922627, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*48*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8296375861, + "lat": 44.0371474, + "lon": 4.9944343, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8296647560, + "lat": 46.6724649, + "lon": 5.5557043, + "tags": { + "access": "customers", + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Les Clefs E-mmobilières" + } + }, + { + "type": "node", + "id": 8297197229, + "lat": 50.4922387, + "lon": 2.5818384, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297197230, + "lat": 50.4922155, + "lon": 2.5818277, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297197231, + "lat": 50.4920279, + "lon": 2.5830733, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297197232, + "lat": 50.4920024, + "lon": 2.5832987, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297197233, + "lat": 50.4919831, + "lon": 2.5832889, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297197234, + "lat": 50.4921152, + "lon": 2.5825548, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297197235, + "lat": 50.4920953, + "lon": 2.5825458, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8297499307, + "lat": 46.7276687, + "lon": -2.3501525, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85113*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8301273692, + "lat": 48.6784405, + "lon": 2.2012802, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8301273693, + "lat": 48.6784591, + "lon": 2.201254, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8301273694, + "lat": 48.6784742, + "lon": 2.2012279, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8301273695, + "lat": 48.6784875, + "lon": 2.2012037, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8301273696, + "lat": 48.6785039, + "lon": 2.2011782, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8303120333, + "lat": 46.4905502, + "lon": 6.095721, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8303120334, + "lat": 46.5469715, + "lon": 6.0169666, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "La Taverne Comtoise" + } + }, + { + "type": "node", + "id": 8303120335, + "lat": 46.6584317, + "lon": 6.0740206, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Coopérative l’Espérance - MaxiMarché" + } + }, + { + "type": "node", + "id": 8303120336, + "lat": 46.7477926, + "lon": 5.9217301, + "tags": { + "amenity": "charging_station", + "network": "Freshmile", + "operator": "Comptoir de l'Ours" + } + }, + { + "type": "node", + "id": 8303456766, + "lat": 48.7812234, + "lon": 2.2016613, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8305276808, + "lat": 45.4992462, + "lon": 6.0003606, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PL8FMQOSKS4", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8308144115, + "lat": 49.2808428, + "lon": -0.7079528, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET117", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8308410321, + "lat": 46.5387678, + "lon": 2.4326471, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ecar18", + "opening_hours": "24/7", + "operator": "InEnergies", + "owner": "SDE 18", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8308732771, + "lat": 48.8815997, + "lon": 1.9240805, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SEY 78", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 8310960830, + "lat": 43.6607488, + "lon": -1.3142663, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8311117525, + "lat": 47.7011691, + "lon": -1.4032339, + "tags": { + "amenity": "charging_station", + "charging_station:output": "50", + "fee": "yes", + "motorcar": "yes", + "name": "Châteaubriant | Rue du Général Patton 77", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique", + "ref": "FR*S44*P44036D", + "socket:chademo": "yes", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 8311117539, + "lat": 47.6379782, + "lon": -2.1635089, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity:charging": "2", + "charging_station:output": "50", + "fee": "yes", + "motorcar": "yes", + "name": "Allaire Rue le Mauff", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:american_express": "no", + "payment:cb": "yes", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "phone": "+33388688458", + "ref": "FR*S56*P56001*A", + "socket:chademo": "1", + "socket:chademo:output": "20", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20", + "website": "https://charge.freshmile.com/location/FCQHSR/" + } + }, + { + "type": "node", + "id": 8314586996, + "lat": 43.2850479, + "lon": 5.3541895, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8314792211, + "lat": 49.2526948, + "lon": 0.0590267, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "level": "0" + } + }, + { + "type": "node", + "id": 8316131974, + "lat": 45.7396148, + "lon": 4.905256, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "Total", + "capacity": "1", + "description": "Paiement sur internet. 43 kW AC/50 kW DC EVBox Troniq 50", + "fee": "yes", + "operator": "Total", + "operator:wikidata": "Q154037", + "parking:fee": "yes", + "payment:mastercard": "yes", + "payment:total_card": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "43 kW", + "socket:typee": "1", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078069-001", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8316131975, + "lat": 45.7396027, + "lon": 4.905265, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "Total", + "capacity": "1", + "description": "Paiement sur Internet. EVBox Ultroniq User Unit", + "fee": "yes", + "operator": "Total Access Relais les Brondillants", + "parking:fee": "yes", + "payment:mastercard": "yes", + "payment:total_card": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "175 kW", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078069-001", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8318510805, + "lat": 46.6758475, + "lon": 4.36279, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 8319914683, + "lat": 48.5675044, + "lon": 6.4995626, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Lulu", + "operator": "CLEM" + } + }, + { + "type": "node", + "id": 8320612460, + "lat": 47.7181926, + "lon": -1.3776194, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Châteaubriant | Place de la Motte 9", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "FR*S44*P44036B", + "socket:type2": "2", + "socket:type2:output": "18" + } + }, + { + "type": "node", + "id": 8320637260, + "lat": 47.7129121, + "lon": -1.3793064, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Châteaubriant | Rue de la Libération 33", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique", + "payment:visa": "yes", + "ref": "FR*S44*P44036C", + "socket:type2": "2", + "socket:type2:output": "18" + } + }, + { + "type": "node", + "id": 8320658039, + "lat": 47.7206537, + "lon": -1.380798, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Châteaubriant | Place de Radevormwald", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique", + "payment:visa": "yes", + "ref": "FR*S44*P44036A", + "socket:type2": "2", + "socket:type2:output": "18" + } + }, + { + "type": "node", + "id": 8327271739, + "lat": 47.3524982, + "lon": -2.1797724, + "tags": { + "amenity": "charging_station", + "name": "Borne recharge electrique - Sydego" + } + }, + { + "type": "node", + "id": 8328114231, + "lat": 49.0988319, + "lon": -0.5022987, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Évrecy, Parking de la Mairie", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8328235981, + "lat": 43.5750909, + "lon": 7.0215438, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "level": "-1", + "motorcar": "yes", + "name": "Le Cannet Parking Val d'Azur", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CAPL", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8328935387, + "lat": 48.4288323, + "lon": 7.658188, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "E. Leclerc Erstein", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Erstein", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PXFYFEZAQNO", + "socket:type2": "6", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8328935388, + "lat": 48.4288575, + "lon": 7.6581983, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "E. Leclerc Erstein", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Erstein", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PXFYFEZAQNO", + "socket:type2": "6", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8330323009, + "lat": 47.247441, + "lon": 6.0211358, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Citiz" + } + }, + { + "type": "node", + "id": 8330323010, + "lat": 47.2474258, + "lon": 6.021111, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Citiz" + } + }, + { + "type": "node", + "id": 8330673003, + "lat": 49.2929543, + "lon": -0.2833197, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "socket:type2": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8333312852, + "lat": 43.6496281, + "lon": 1.5078017, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Intermarché" + } + }, + { + "type": "node", + "id": 8333878525, + "lat": 48.9063533, + "lon": 2.2491134, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "La Garenne-Colombes" + } + }, + { + "type": "node", + "id": 8333878526, + "lat": 48.9063445, + "lon": 2.2491872, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "La Garenne-Colombes" + } + }, + { + "type": "node", + "id": 8333878527, + "lat": 48.9063363, + "lon": 2.2492512, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "La Garenne-Colombes" + } + }, + { + "type": "node", + "id": 8333878528, + "lat": 48.9063271, + "lon": 2.2493223, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "La Garenne-Colombes" + } + }, + { + "type": "node", + "id": 8333878529, + "lat": 48.9063169, + "lon": 2.249395, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "La Garenne-Colombes", + "scooter": "yes" + } + }, + { + "type": "node", + "id": 8336024024, + "lat": 45.2420369, + "lon": 5.8238605, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "no", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 8338055371, + "lat": 47.6423264, + "lon": -2.0693211, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44185A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8343379785, + "lat": 48.6198588, + "lon": -1.2911588, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8344597133, + "lat": 43.4562561, + "lon": 5.4744806, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13041*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8345424200, + "lat": 43.7544137, + "lon": -1.328892, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*88", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8346000527, + "lat": 48.8292934, + "lon": 2.3825842, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "uberqo", + "source": "survey" + } + }, + { + "type": "node", + "id": 8346091904, + "lat": 43.9361125, + "lon": 5.7648199, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE04 - Alpes-de-Haute-Provence", + "ref:EU:EVSE": "FR*EBN*PDIMB9HNUST", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8358720054, + "lat": -22.2169428, + "lon": 166.4717926, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8360344866, + "lat": 45.5625429, + "lon": 5.9114533, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8360694282, + "lat": 47.1770398, + "lon": -1.5924354, + "tags": { + "amenity": "charging_station", + "capacity": "10" + } + }, + { + "type": "node", + "id": 8364370863, + "lat": 45.9208141, + "lon": 6.0909976, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Fruitière", + "network": "E Born", + "opening_hours": "24/7", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74182*C", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8366626116, + "lat": 45.9125358, + "lon": 5.1928193, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8372692914, + "lat": 45.1233994, + "lon": 5.6986749, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8378802756, + "lat": 43.7277198, + "lon": 7.1864346, + "tags": { + "access": "customers", + "addr:city": "Nice", + "addr:country": "FR", + "addr:housenumber": "606", + "addr:postcode": "06200", + "addr:street": "Boulevard du Mercantour", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Nice supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "source": "survey", + "website": "https://www.tesla.com/findus/location/supercharger/nicesupercharger" + } + }, + { + "type": "node", + "id": 8380886287, + "lat": 47.3129911, + "lon": -1.3225803, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SmiléMobi", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIEML 49", + "ref:EU:EVSE": "FR*S49*P49360*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8382460162, + "lat": 43.3138597, + "lon": 3.1413902, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "description": "Type de prise : EF - T2 - T3", + "fee": "yes", + "motorcar": "yes", + "name": "Colombiers - Avenue de Béziers", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34081*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8382460163, + "lat": 43.3319003, + "lon": 3.1221258, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "description": "Type de prise : EF - T2 - T3", + "fee": "yes", + "motorcar": "yes", + "name": "Montady - Avenue des Platanes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34161*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8385161287, + "lat": 42.6690496, + "lon": 2.8761383, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Leroy Merlin" + } + }, + { + "type": "node", + "id": 8387600492, + "lat": 43.773567, + "lon": -0.4283545, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*60", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8391840243, + "lat": 46.9874956, + "lon": 3.158211, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sieeen" + } + }, + { + "type": "node", + "id": 8393100326, + "lat": 49.4548411, + "lon": 1.7898339, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8394119432, + "lat": 43.8918606, + "lon": -0.3029206, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S40*PMB40*47", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8396210197, + "lat": 48.6696146, + "lon": 5.889907, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 8396210199, + "lat": 48.6511956, + "lon": 5.8714474, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 8396210200, + "lat": 48.6753853, + "lon": 5.8872993, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 8398281519, + "lat": 47.9744761, + "lon": 0.1572493, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8399311496, + "lat": 44.1835554, + "lon": 4.1496901, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30223*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8402686103, + "lat": 45.9062854, + "lon": 6.0921791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PLZJLZN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8402755029, + "lat": 45.7199282, + "lon": 4.8881862, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Izivia", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "VEN07B" + } + }, + { + "type": "node", + "id": 8412470030, + "lat": 47.8149759, + "lon": 5.2224509, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "fixme": "à placer au bon endroit", + "motorcar": "yes", + "name": "IONITY Langres Perrogney", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8412470033, + "lat": 47.813554, + "lon": 5.224363, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Langres Noidant", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8412531056, + "lat": 48.3494351, + "lon": 2.6074655, + "tags": { + "access": "yes", + "addr:city": "Ury", + "addr:country": "FR", + "addr:postcode": "77760", + "addr:street": "Chemin de Melun", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Fontainebleau Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/fontainebleausupercharger" + } + }, + { + "type": "node", + "id": 8417590070, + "lat": 45.8862531, + "lon": 6.0971092, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PXLPJUD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8418808360, + "lat": 44.5856947, + "lon": 5.1338156, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8419969659, + "lat": 46.5733264, + "lon": -1.1179767, + "tags": { + "access": "customers", + "addr:city": "Sainte-Hermine", + "addr:postcode": "85210", + "addr:street": "A83 - Aire de la Vendée", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "9", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire de la Vendée Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "9", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedelavendeesupercharger" + } + }, + { + "type": "node", + "id": 8419969660, + "lat": 46.5734942, + "lon": -1.1180082, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Vendée", + "note": "accurate location needed", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "50 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 8420314454, + "lat": 45.0914017, + "lon": 6.0677731, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38191*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8420694849, + "lat": 43.6015485, + "lon": 7.0706865, + "tags": { + "amenity": "charging_station", + "level": "0", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8420760765, + "lat": 46.1346158, + "lon": 6.2687157, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74220*B", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8422784583, + "lat": 47.3505873, + "lon": 0.851526, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "bike": "yes", + "capacity": "1", + "fee": "no", + "motorcar": "no", + "name": "Borne De Recharge Velo", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 8422951982, + "lat": 47.4333044, + "lon": -2.0846658, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "name": "SYDEGO", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44129A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8422951983, + "lat": 47.4365207, + "lon": -2.0934402, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "name": "SYDEGO", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44129B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8423021830, + "lat": 47.3957525, + "lon": -2.0921485, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "SYDEGO", + "operator": "SYDELA" + } + }, + { + "type": "node", + "id": 8423060725, + "lat": 47.4748947, + "lon": -2.0570086, + "tags": { + "amenity": "charging_station", + "name": "SYDEGO", + "operator": "SYDELA" + } + }, + { + "type": "node", + "id": 8423109548, + "lat": 47.39684, + "lon": -0.5286039, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SmiléMobi", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8423117125, + "lat": 47.4005515, + "lon": -0.5143149, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "SmiléMobi", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8423164828, + "lat": 47.4041401, + "lon": 0.5937048, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "SIDE Indre-et-Loire Charging Station" + } + }, + { + "type": "node", + "id": 8423164829, + "lat": 47.4041645, + "lon": 0.5936789, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "SIDE Indre-et-Loire Charging Station" + } + }, + { + "type": "node", + "id": 8423189891, + "lat": 47.4039367, + "lon": 0.6263737, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8423189892, + "lat": 47.4039561, + "lon": 0.6264112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8425828083, + "lat": 47.2494582, + "lon": -0.0908142, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Siéml" + } + }, + { + "type": "node", + "id": 8425835652, + "lat": 47.2579498, + "lon": -0.081357, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Siéml" + } + }, + { + "type": "node", + "id": 8425835657, + "lat": 47.2637068, + "lon": -0.0741584, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Siéml" + } + }, + { + "type": "node", + "id": 8425839618, + "lat": 47.264273, + "lon": -0.1001767, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Siéml" + } + }, + { + "type": "node", + "id": 8425856720, + "lat": 47.255535, + "lon": -0.0719552, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Siéml" + } + }, + { + "type": "node", + "id": 8425856735, + "lat": 47.3080316, + "lon": -0.1526266, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SIEML", + "website": "https://www.sieml.fr/smilemobi/" + } + }, + { + "type": "node", + "id": 8425870270, + "lat": 47.341847, + "lon": -0.2314463, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8425870271, + "lat": 47.3507793, + "lon": -0.2245427, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SIÉML" + } + }, + { + "type": "node", + "id": 8429013215, + "lat": 44.9354571, + "lon": 5.0273646, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Eborn", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8430214924, + "lat": 47.8701435, + "lon": -3.5673804, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Leclerc" + } + }, + { + "type": "node", + "id": 8430890461, + "lat": 47.3258689, + "lon": -0.0556757, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8435468921, + "lat": 48.8723356, + "lon": 2.3260433, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "covered": "no", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*W75*PVP*0057", + "socket:type3c": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8436159566, + "lat": 43.5595164, + "lon": 3.8450197, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "operator": "Bouygues Energies et services", + "ref:EU:EVSE": "FR*M34*P34270*003" + } + }, + { + "type": "node", + "id": 8436893229, + "lat": 45.2442376, + "lon": 4.2325909, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE43 - Haute-Loire", + "ref:EU:EVSE": "FR*EBN*PCSC0TUMVZJ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8438967513, + "lat": 47.0146224, + "lon": 3.0830615, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58117*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8441809162, + "lat": 48.7115998, + "lon": 2.3058917, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "operator": "Lidl France" + } + }, + { + "type": "node", + "id": 8445051691, + "lat": 43.6614867, + "lon": -1.4427866, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Borne acceleree\nSur le parking", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*41", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8445497330, + "lat": 48.7450217, + "lon": -0.0236895, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61006C", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8447059146, + "lat": 43.7907477, + "lon": 4.8298605, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8448879327, + "lat": 43.5263705, + "lon": 5.4606969, + "tags": { + "amenity": "charging_station", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Métropole Aix-Marseille Provence", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8449340795, + "lat": 49.3788385, + "lon": 0.7315827, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE207", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:cb": "yes", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PROUTOTMAIRIE", + "reservation": "yes", + "socket:type2": "2", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8450220077, + "lat": 43.2136915, + "lon": 0.1108943, + "tags": { + "alt_name": "Aire De Covoiturage Tarbes Est", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "Séméac - Aire de Covoiturage Autoroute", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65417*001", + "socket:type2": "8", + "socket:typee": "8", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8450237146, + "lat": 46.2070317, + "lon": 4.311933, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "G2Mobility", + "capacity": "2", + "description": "La carte magnétique est à demander à l'accueil de votre Intermarché. Accès 2 heures gratuites contre échange de votre permis de conduire.", + "fee": "no", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8454346106, + "lat": 46.1522986, + "lon": 4.156035, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "ZEborne", + "capacity": "2", + "description": "Recharge possible avec ou sans abonnement. Smartphone nécessaire.", + "fee": "yes", + "motorcar": "yes", + "operator": "Groupement des Mousquetaires", + "ref": "49373;49374", + "source": "survey" + } + }, + { + "type": "node", + "id": 8454346107, + "lat": 46.1523495, + "lon": 4.1560028, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "ZEborne", + "capacity": "2", + "description": "Recharge possible avec ou sans abonnement. Smartphone nécessaire.", + "fee": "yes", + "motorcar": "yes", + "operator": "Groupement des Mousquetaires", + "ref": "52961;52962", + "source": "survey" + } + }, + { + "type": "node", + "id": 8454855559, + "lat": 46.2446779, + "lon": 6.095492, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 8456716416, + "lat": 49.1905468, + "lon": -0.3017125, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 8458055889, + "lat": 44.8228187, + "lon": -0.5586049, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8461147907, + "lat": 44.7741098, + "lon": -0.5631325, + "tags": { + "amenity": "charging_station", + "capacity": "10", + "description": "Within the Parc-Relais barrier zone but out in the open air. Suitable for leaving your car charging while you take the tram into Bordeaux.", + "fixme": "Needs a closer inspection for more details. Has a multi-prong high power plug, but I don't know the type. Didn't see if there's a regular household type socket.", + "motorcar": "yes", + "operator": "TBM" + } + }, + { + "type": "node", + "id": 8461631409, + "lat": 49.2427364, + "lon": 4.0395569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 8462556776, + "lat": 45.907627, + "lon": 6.1038544, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 8464191806, + "lat": 45.6443562, + "lon": 5.0107034, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8464696979, + "lat": 46.7916321, + "lon": 0.5255723, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "BSP", + "operator": "BORNES SOLUTIONS", + "owner": "SACOA DES NATIONS", + "ref:EU:EVSE": "FR*BSP*P8610000000001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696980, + "lat": 46.81327, + "lon": 0.53227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B022", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696981, + "lat": 46.8135635, + "lon": 0.5350043, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B023", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696982, + "lat": 46.8186105, + "lon": 0.5452516, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B020", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696983, + "lat": 46.8183, + "lon": 0.54894, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B021", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696984, + "lat": 46.8362734, + "lon": 0.5426443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B024", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696985, + "lat": 46.87613, + "lon": 0.56652, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B043", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696986, + "lat": 46.93734, + "lon": 0.60611, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B132", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696988, + "lat": 46.7017078, + "lon": 0.3711371, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Chincé", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8464696989, + "lat": 46.7011962, + "lon": 0.3666653, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Jaunay-Clan", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 8474771812, + "lat": 47.5832048, + "lon": 7.5571188, + "tags": { + "amenity": "charging_station", + "name": "Allego" + } + }, + { + "type": "node", + "id": 8476103203, + "lat": 43.3129375, + "lon": 5.3715086, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PRIOMHNNRJX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8479327762, + "lat": 45.7256909, + "lon": 4.838972, + "tags": { + "amenity": "charging_station", + "fuel:cng": "yes", + "name": "Quai des énergies", + "operator": "CNR;Engie" + } + }, + { + "type": "node", + "id": 8482977125, + "lat": 43.7085382, + "lon": -1.055677, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Type de borne: accélérée (entre 2h et 8h de charge). La borne de recharge se trouve sous le parking couvert de la place Camille Bouvet.", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:type": "public", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*3", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8483032848, + "lat": 43.7071735, + "lon": -1.0404692, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Type de borne : accélérée (entre 2h et 8h de charge)", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:type": "public", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S40*PMB40*4", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8483043671, + "lat": 43.71328, + "lon": -1.0556164, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Type de borne : accélérée (entre 2h et 8h de charge). La borne de se trouve sur le parking place Maréchal Joffre.", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*5", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8483049369, + "lat": 43.7093022, + "lon": -1.049609, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC40", + "ref:EU:EVSE": "FR*S40*PMB40*57", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8483071669, + "lat": 43.711071, + "lon": -1.0420903, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SYDEC40", + "ref:EU:EVSE": "FR*S40*PMB40*54", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8483073674, + "lat": 43.692861, + "lon": -1.008743, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Type de borne: rapide (30 minutes de charge)", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*71", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8483121258, + "lat": 44.3481001, + "lon": -1.0660483, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Super U" + } + }, + { + "type": "node", + "id": 8490221263, + "lat": 46.9916046, + "lon": 3.1424892, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SIEEEN" + } + }, + { + "type": "node", + "id": 8490908456, + "lat": 43.5298394, + "lon": 5.4529921, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Métropole Aix Marseille Provence" + } + }, + { + "type": "node", + "id": 8490908457, + "lat": 43.5340225, + "lon": 5.4611373, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Métropole Aix Marseille Provence" + } + }, + { + "type": "node", + "id": 8490908459, + "lat": 43.524022, + "lon": 5.4509786, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Métropole Aix Marseille Provence" + } + }, + { + "type": "node", + "id": 8490908460, + "lat": 43.5285541, + "lon": 5.4436297, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13001*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8490908461, + "lat": 43.5191645, + "lon": 5.4497389, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Métropole Aix Marseille Provence" + } + }, + { + "type": "node", + "id": 8490962137, + "lat": 43.5562244, + "lon": 5.4596124, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Métropole Aix Marseille Provence" + } + }, + { + "type": "node", + "id": 8490980354, + "lat": 43.5806691, + "lon": 5.4224306, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Métropole Aix Marseille Provence" + } + }, + { + "type": "node", + "id": 8491310520, + "lat": 50.7538905, + "lon": 2.2374872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H01*P62757001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8492616445, + "lat": 45.5996514, + "lon": -0.0539129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "3", + "socket:typee": "2", + "socket:typee:current": "16", + "socket:typee:output": "3", + "source": "survey", + "survey_date": "2021-03" + } + }, + { + "type": "node", + "id": 8493135671, + "lat": 48.8554396, + "lon": 2.3585628, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX04*02", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8494559117, + "lat": 43.2006408, + "lon": 0.0357391, + "tags": { + "amenity": "charging_station", + "note": "à compléter et à placer correctement" + } + }, + { + "type": "node", + "id": 8494725064, + "lat": 49.3778283, + "lon": 2.4165369, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCLERMONTVO", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8494879699, + "lat": 43.4304207, + "lon": 3.6089344, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8496342585, + "lat": 44.5500013, + "lon": 4.6822726, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE07 - Ardèche", + "ref": "FR*S07*P07319*B", + "ref:EU:EVSE": "FR*EBN*PJNCQWIKSDA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8496946962, + "lat": 49.4298453, + "lon": 2.0815884, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Hôtel de ville de Beauvais", + "operator": "Ville de Beauvais" + } + }, + { + "type": "node", + "id": 8496946963, + "lat": 49.4296599, + "lon": 2.0813671, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Hôtel de ville", + "operator": "Mouv'Oise SE60" + } + }, + { + "type": "node", + "id": 8503880727, + "lat": 44.0340729, + "lon": -0.3205612, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "MObiVE", + "owner": "SYDEC 40", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S40*PMB40*30", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8506578502, + "lat": 47.9547107, + "lon": 7.3036001, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "KiWhi Pass Charging Station", + "operator": "KiWhi Pass" + } + }, + { + "type": "node", + "id": 8507031232, + "lat": 43.8920158, + "lon": 1.2402627, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "capacity": "2", + "fee": "yes", + "name": "ChargePoint", + "operator": "SDE 82" + } + }, + { + "type": "node", + "id": 8510822673, + "lat": 48.7125681, + "lon": 2.4038501, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8510822674, + "lat": 48.7125462, + "lon": 2.403828, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8510914724, + "lat": 47.8454731, + "lon": -4.1678526, + "tags": { + "amenity": "charging_station", + "amperage": "64", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BDLH", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "voltage": "400" + } + }, + { + "type": "node", + "id": 8512020725, + "lat": 43.3966907, + "lon": 1.2619875, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8512152554, + "lat": 45.4559822, + "lon": 5.2909382, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref": "DNLKCM", + "ref:EU:EVSE": "FR*EBN*PDNLKCM", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://moncompte.reseau-eborn.fr/location/DNLKCM" + } + }, + { + "type": "node", + "id": 8513004602, + "lat": 44.0688303, + "lon": 0.9005666, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "2", + "fee": "yes", + "operator": "Mairie", + "payment:debit_cards": "yes" + } + }, + { + "type": "node", + "id": 8513597776, + "lat": 50.414319, + "lon": 2.981184, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Citroën Noyelles-Godault", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Citroën Noyelles-Godault", + "ref:EU:EVSE": "FR*G44*PSOFIDACITROEN62950*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8513597777, + "lat": 50.414902, + "lon": 2.97969, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Novotel Noyelles", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Novotel Noyelles", + "ref:EU:EVSE": "FR*SSD*PNOVOTEL62950*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8514754057, + "lat": 48.8242342, + "lon": 1.9644152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SEYMABORNE" + } + }, + { + "type": "node", + "id": 8515313205, + "lat": 42.8891053, + "lon": 1.3470822, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Massat - Place de L'Église", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09182*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8515375629, + "lat": 45.1594462, + "lon": 1.533729, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8515454911, + "lat": 45.6659223, + "lon": 0.5000844, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEG 16", + "ref:EU:EVSE": "FR*S16*PMB16*57", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8516417091, + "lat": 44.769233, + "lon": 4.839749, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26165*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8516433769, + "lat": 43.5579823, + "lon": 4.0877845, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34344001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8521170657, + "lat": 43.6705536, + "lon": -1.3912658, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "Borne acceleree\nA proximité du parking et du car wash", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*87", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8521619516, + "lat": 48.6815909, + "lon": 2.3849535, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "sodetrel" + } + }, + { + "type": "node", + "id": 8526000658, + "lat": 43.2297694, + "lon": 0.0832421, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Tarbes - Place du Foirail", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65440*005", + "socket:type2": "3", + "socket:type3c": "1", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8526224472, + "lat": 47.2387804, + "lon": -1.5888086, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8526279385, + "lat": 44.8003336, + "lon": 4.9382979, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26208*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8528971074, + "lat": 47.6300175, + "lon": -2.6491693, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8529134204, + "lat": 45.8895871, + "lon": 4.7430359, + "tags": { + "access": "yes", + "amenity": "charging_station", + "name": "Territoire d'énergie", + "operator": "RHÔNE - SYDER" + } + }, + { + "type": "node", + "id": 8529283129, + "lat": 43.4119131, + "lon": 1.1169464, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8539544095, + "lat": 43.3657931, + "lon": 3.1573174, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Maraussan - Place Marcel Barrère", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34148*001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8543748382, + "lat": 45.6005548, + "lon": -0.0575874, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "3", + "socket:typee": "2", + "socket:typee:current": "16", + "socket:typee:output": "3", + "source": "survey", + "survey_date": "2021-03" + } + }, + { + "type": "node", + "id": 8546397316, + "lat": 43.4285221, + "lon": -1.2565556, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "mobive", + "socket:type2_combo": "2", + "voltage": "220" + } + }, + { + "type": "node", + "id": 8554041791, + "lat": 43.286276, + "lon": 5.351102, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13207*006", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8554797688, + "lat": 45.5461937, + "lon": 3.2501792, + "tags": { + "amenity": "charging_station", + "amperage": "64", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Mas", + "opening_hours": "24/7", + "operator": "Agglo Pays d'Issoire", + "payment:cash": "no", + "payment:cb": "yes", + "payment:contactless": "yes", + "ref": "FR-ET01-02315", + "socket:type2": "2", + "voltage": "400" + } + }, + { + "type": "node", + "id": 8554797693, + "lat": 46.743706, + "lon": 1.8303761, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Victor Hugo", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "ref": "FR*536*ESDE36*005*a*1 ; FR*536*ESDE36*005*a*2", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8555308560, + "lat": 43.4158857, + "lon": -0.342245, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*86", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8555308561, + "lat": 43.403502, + "lon": -0.386747, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*115", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8555308562, + "lat": 43.3387137, + "lon": -0.2509568, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*82", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8555308563, + "lat": 43.344503, + "lon": -0.264224, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*83", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8555308564, + "lat": 43.3020609, + "lon": -0.3981379, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "ref:EU:EVSE": "FR*S64*PMB64*39", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8556503203, + "lat": 43.6521285, + "lon": 0.5923764, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile", + "ref": "MUHS", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 8557145111, + "lat": 44.3077919, + "lon": -1.1811032, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Lafon Technologies", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8557629195, + "lat": 49.0919059, + "lon": 6.2319366, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "3;22", + "operator": "freshsmile" + } + }, + { + "type": "node", + "id": 8557642962, + "lat": 49.0919026, + "lon": 6.2318677, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "3;22", + "operator": "freshsmile" + } + }, + { + "type": "node", + "id": 8557982067, + "lat": 48.2981153, + "lon": -0.6140773, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 8559623221, + "lat": 47.6843037, + "lon": 6.5162833, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8566787642, + "lat": 45.5547425, + "lon": 3.7388465, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8571100117, + "lat": 49.260991, + "lon": 4.0281327, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 8572652988, + "lat": 46.7775314, + "lon": 1.7827473, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chemin de la Croix", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572652993, + "lat": 46.4839984, + "lon": 2.0036134, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Allée de la Fontvieille", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572652994, + "lat": 46.4340611, + "lon": 1.8257723, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572652999, + "lat": 46.4241146, + "lon": 1.7262563, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Croisement RD87-VC2", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653000, + "lat": 46.441295, + "lon": 1.3924976, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653005, + "lat": 46.5096378, + "lon": 1.3089166, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place des Flandres-Dunkerque", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653006, + "lat": 46.5510888, + "lon": 1.1565527, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Avenue Jean Jaurès", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653013, + "lat": 46.7010276, + "lon": 1.214378, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Verdun", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653014, + "lat": 46.732857, + "lon": 0.953218, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653015, + "lat": 46.8640879, + "lon": 1.7744396, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Chemin du Mée", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653218, + "lat": 46.8191469, + "lon": 1.2079467, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place Jean Moulin", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653219, + "lat": 46.8077329, + "lon": 1.0432389, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653221, + "lat": 46.914413, + "lon": 1.03825, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Jean Delalez", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653222, + "lat": 47.0815882, + "lon": 1.3464956, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653223, + "lat": 47.1239971, + "lon": 1.4369311, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572653224, + "lat": 47.16432, + "lon": 1.558818, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Avenue de la Résistance", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8572954369, + "lat": 45.4602757, + "lon": 3.2547648, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Orios by SPIE", + "opening_hours": "24/7", + "operator": "SPIE", + "owner": "SIEG 63", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "Orthophotographie CRAIG - IGN - Feder Auvergne-Rhône-Alpes 2019; survey", + "survey:date": "2021-03-18" + } + }, + { + "type": "node", + "id": 8575804581, + "lat": 46.7975675, + "lon": 1.6966371, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Parking Hôpital", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804586, + "lat": 46.8030668, + "lon": 1.719817, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Allée du Stade Gaston Petit", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804587, + "lat": 46.8110533, + "lon": 1.7041808, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Colbert", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804588, + "lat": 46.811893, + "lon": 1.700462, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Place Voltaire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804589, + "lat": 46.8127128, + "lon": 1.6969821, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rond-Point Raymond Picard", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804590, + "lat": 46.8120444, + "lon": 1.6948247, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "5€ forfaitaire", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Place Gambetta", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804591, + "lat": 46.8086764, + "lon": 1.6930804, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Palais de Justice", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804592, + "lat": 46.8107918, + "lon": 1.690549, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Chargelec 36", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804593, + "lat": 46.8117113, + "lon": 1.6765212, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Allée Jean Vaillé", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804594, + "lat": 46.8171491, + "lon": 1.683986, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Place Saint-Christophe", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804595, + "lat": 46.8247168, + "lon": 1.7039562, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Avenue Paul Langevin", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804600, + "lat": 46.826852, + "lon": 1.7039335, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Place Lafayette", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804601, + "lat": 46.8522679, + "lon": 1.7112769, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Restaurant Escale", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804602, + "lat": 46.8704102, + "lon": 1.6316819, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Salle des Fêtes", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804607, + "lat": 46.8299799, + "lon": 1.563726, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rue Louis Girard", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804608, + "lat": 46.8471835, + "lon": 1.5397547, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rue du Général de Gaulle", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804609, + "lat": 46.9391977, + "lon": 1.4367405, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Place de la Mairie", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804611, + "lat": 46.978612, + "lon": 1.6110052, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rue du Collège", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804612, + "lat": 47.0102212, + "lon": 1.556515, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rue Pascal Réchaussat", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804613, + "lat": 47.2534261, + "lon": 1.6542998, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Rue de la République", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8575804614, + "lat": 47.2468489, + "lon": 1.6390268, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "ZA Les Vignaux", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "scooter": "yes", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8577108996, + "lat": 48.9271446, + "lon": 2.0429963, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY Ma Borne - Poissy - Rue du 8 mai 1945", + "operator": "SEY 78" + } + }, + { + "type": "node", + "id": 8579444336, + "lat": 44.7141241, + "lon": -0.5425364, + "tags": { + "amenity": "charging_station", + "name": "pas de l'âne", + "operator": "syndicat départementaux d'energie" + } + }, + { + "type": "node", + "id": 8579744256, + "lat": 48.8204086, + "lon": 2.3512314, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0107", + "socket:type3c": "6", + "socket:typee": "1", + "source:charging": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 8582287869, + "lat": 45.9156945, + "lon": 6.0918723, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7", + "owner": "Ville de Meythet", + "socket:type2": "2", + "socket:type2:output": "22kW" + } + }, + { + "type": "node", + "id": 8582511077, + "lat": 43.3169205, + "lon": 3.2794833, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Villeneuve-lès-Béziers - Place Samuel Paty", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34336*001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8589482078, + "lat": 44.408772, + "lon": 0.706495, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "TE 47", + "ref:EU:EVSE": "FR*S47*PMB47*62", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8589482089, + "lat": 44.405212, + "lon": 0.707673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "TE 47", + "ref:EU:EVSE": "FR*S47*PMB47*60", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8592444960, + "lat": 50.6069289, + "lon": 3.1648943, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "email": "contact@nexteneo.com", + "fee": "no", + "motorcar": "yes", + "network": "NEXTENEO", + "opening_hours": "24/7", + "operator": "NEXTENEO", + "owner": "NEXTENEO", + "phone": "+33450116877", + "ref:EU:EVSE": "FR*0NX*POOLE4XC3", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8592444961, + "lat": 50.6070243, + "lon": 3.1647075, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "hello@powerdot.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "payment:credit_cards": "no", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*PD1*PMATVDA", + "socket:chademo": "1", + "socket:type2": "5", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8592444962, + "lat": 50.606887, + "lon": 3.1648592, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "email": "contact@nexteneo.com", + "fee": "no", + "motorcar": "yes", + "network": "NEXTENEO", + "opening_hours": "24/7", + "operator": "NEXTENEO", + "owner": "NEXTENEO", + "phone": "+33450116877", + "ref:EU:EVSE": "FR*0NX*POOLE4XC3", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8592578537, + "lat": 48.0928783, + "lon": -0.7600609, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8592829205, + "lat": 43.6656409, + "lon": 7.1825255, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8592873303, + "lat": 46.6261444, + "lon": 1.9732571, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Parking Maison George Sand", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8592873304, + "lat": 46.5959416, + "lon": 1.8066474, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8592873305, + "lat": 46.5465804, + "lon": 1.7479602, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Champ de Foire", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8592873306, + "lat": 46.476821, + "lon": 1.682748, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Rue de la Poste", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8592873307, + "lat": 46.4779718, + "lon": 1.6079233, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "3 €", + "fee": "yes", + "motorcar": "yes", + "name": "Rue du Lavoir", + "opening_hours": "24/7", + "operator": "SDEI36", + "payment:cb": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kVA" + } + }, + { + "type": "node", + "id": 8593468176, + "lat": 49.0087332, + "lon": 2.5605044, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "13" + } + }, + { + "type": "node", + "id": 8593479027, + "lat": 49.0135771, + "lon": 2.5318979, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "6" + } + }, + { + "type": "node", + "id": 8593479028, + "lat": 49.013499, + "lon": 2.5320958, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 8596017671, + "lat": 49.0470234, + "lon": 7.4276143, + "tags": { + "access": "yes", + "addr:city": "Bitche", + "addr:housenumber": "31", + "addr:postcode": "57230", + "addr:street": "Rue Jean-Jacques Kieffer", + "amenity": "charging_station", + "authentication:membership_card": "rfid", + "brand": "Freshmile", + "capacity": "2", + "covered": "no", + "description": "Please ensure to remove your vehicle as soon as your charging is over.", + "fee": "no", + "network": "Freshmile", + "ref": "Borne #1", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "2", + "socket:type2:output": "22kW", + "source": "Chargemap;streetlevel imagery", + "website": "https://chargemap.com/parking-intermarche-5.html" + } + }, + { + "type": "node", + "id": 8596023665, + "lat": 49.0542802, + "lon": 7.4364123, + "tags": { + "access": "yes", + "addr:city": "Bitche", + "addr:housenumber": "4", + "addr:postcode": "57230", + "addr:street": "Rue du Général Stuhl", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "rfid", + "brand": "Freshmile", + "capacity": "2", + "charge": "0.22€/kWh", + "covered": "no", + "description": "Please ensure to remove your vehicle as soon as your charging is over.", + "fee": "yes", + "network": "Freshmile", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "2", + "socket:type2:output": "22kW", + "source": "Chargemap;streetlevel imagery", + "website": "https://chargemap.com/freshmilr.html" + } + }, + { + "type": "node", + "id": 8596023666, + "lat": 49.0543045, + "lon": 7.436348, + "tags": { + "access": "yes", + "addr:city": "Bitche", + "addr:housenumber": "4", + "addr:postcode": "57230", + "addr:street": "Rue du Général Stuhl", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "rfid", + "brand": "Freshmile", + "capacity": "2", + "charge": "0.22€/kWh", + "covered": "no", + "description": "Please ensure to remove your vehicle as soon as your charging is over.", + "fee": "yes", + "network": "Freshmile", + "socket:schuko": "2", + "socket:schuko:output": "3kW", + "socket:type2": "2", + "socket:type2:output": "22kW", + "source": "Chargemap;streetlevel imagery", + "website": "https://chargemap.com/freshmilr.html" + } + }, + { + "type": "node", + "id": 8596023705, + "lat": 48.9915822, + "lon": 7.3165809, + "tags": { + "access": "yes", + "addr:city": "Montbronn", + "addr:housenumber": "13", + "addr:postcode": "57415", + "addr:street": "Rue du Château d'Eau", + "amenity": "charging_station", + "authentication:phone_call": "yes", + "capacity": "1", + "covered": "no", + "description": "Prise sous l'escalier. Téléphoner avant pour vous brancher", + "fee": "no", + "operator": "Franck Rohr", + "ref": "Borne #1", + "socket:typee": "1", + "socket:typee:output": "3.7 kW", + "source": "Chargemap", + "website": "https://fr.chargemap.com/rue-du-chateau-d-eau-montbronn.html" + } + }, + { + "type": "node", + "id": 8596023706, + "lat": 48.9740904, + "lon": 7.3837645, + "tags": { + "access": "yes", + "addr:city": "Goetzenbruck", + "addr:housenumber": "24", + "addr:postcode": "57620", + "addr:street": "Rue du 19e Char", + "amenity": "charging_station", + "capacity": "1", + "covered": "no", + "description": "Borne dans le garage merci de me téléphoner pour recharger. Prise pour zoé\nTéléphoner avant svp.", + "fee": "no", + "ref": "Borne #1", + "socket:type3c": "1", + "socket:type3c:output": "3.7 kW", + "source": "Chargemap", + "website": "https://fr.chargemap.com/particulier-goetzenbruck.html" + } + }, + { + "type": "node", + "id": 8596023707, + "lat": 48.9918649, + "lon": 7.2153486, + "tags": { + "access": "yes", + "addr:city": "Rahling", + "addr:housenumber": "6", + "addr:postcode": "57410", + "addr:street": "Place de la Fontaine", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "rfid", + "brand": "Freshmile", + "charge": "0.22€/kWh;0.028€/min", + "covered": "no", + "description": "Borne sur le parking de la fontaine en face de la statue du curé qui tient une croix en main.\nBorne tri-standard", + "fee": "yes", + "manufacturer": "EVTronic", + "network": "Freshmile", + "operator": "Commune de Rahling", + "ref": "Borne #1", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "source": "Chargemap", + "website": "https://fr.chargemap.com/borne-de-recharge-1.html" + } + }, + { + "type": "node", + "id": 8601906880, + "lat": 43.2973036, + "lon": 5.443194, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13055*006", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8607046498, + "lat": 44.8864076, + "lon": -0.6984671, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "E. Leclerc" + } + }, + { + "type": "node", + "id": 8611219840, + "lat": 48.2446013, + "lon": 6.4164954, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Thaon-les-Vosges - Parking SNCF", + "opening_hours": "24/7", + "operator": "Mairie de Thaon-les-Vosges", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 8614739092, + "lat": 48.8420809, + "lon": -3.1388909, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "brev'car", + "operator": "Izivia", + "owner": "SDE22" + } + }, + { + "type": "node", + "id": 8617072727, + "lat": 45.9985804, + "lon": 6.2506229, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74282*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8617133561, + "lat": 49.2009035, + "lon": -1.5639935, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "covered": "no", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 8617133604, + "lat": 49.2189866, + "lon": -1.5355385, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "covered": "no", + "motorcar": "yes", + "operator": "SDEM" + } + }, + { + "type": "node", + "id": 8618024864, + "lat": 43.3107898, + "lon": -0.3619925, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8621495715, + "lat": 43.1959279, + "lon": 1.0014837, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8622817439, + "lat": 48.7147436, + "lon": 2.2462984, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "mapillary": "1567079780457160", + "operator": "Communauté Paris Saclay" + } + }, + { + "type": "node", + "id": 8623309105, + "lat": 47.6106009, + "lon": 6.9950395, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090071103", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8624893426, + "lat": 45.9509571, + "lon": 6.1906713, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Villaz - Ecole", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8626330888, + "lat": 43.5958068, + "lon": 7.0918608, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "name": "Wiiiz", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 8626957037, + "lat": 49.1895324, + "lon": -1.4038421, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "hgv": "no", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8628575674, + "lat": 45.4773646, + "lon": 3.280922, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SIEg 63" + } + }, + { + "type": "node", + "id": 8628587198, + "lat": 45.820348, + "lon": 4.7601954, + "tags": { + "access": "customers", + "addr:city": "Dardilly", + "addr:postcode": "69570", + "addr:street": "Allée Du Camping International", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Dardilly Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/Dardillyfrsupercharger" + } + }, + { + "type": "node", + "id": 8628650446, + "lat": 43.6113751, + "lon": -0.9923323, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Intermarché" + } + }, + { + "type": "node", + "id": 8629243614, + "lat": 43.303279, + "lon": 5.450343, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13212*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8631758912, + "lat": 49.1065682, + "lon": 7.0690492, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:charging": "2", + "email": "support@freshmile.com", + "fee": "yes", + "operator": "Freshmile", + "phone": "+33 3 88 68 84 58", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "survey;website freshmile", + "website": "https://freshmile.com/" + } + }, + { + "type": "node", + "id": 8631881697, + "lat": 46.3213151, + "lon": -0.5897026, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB40018A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8634712915, + "lat": 48.9585206, + "lon": 2.9472041, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Écocharge77", + "operator": "Izivia", + "owner": "SDESM", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8635396502, + "lat": 43.6020103, + "lon": 1.0692536, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "Mobilygreen", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Carrefour L'Isle-Jourdain", + "network": "Mobilygreen", + "opening_hours": "24/7", + "operator": "Mobilygreen", + "owner": "CARREFOUR MARKET ISLE JOURDAIN", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8636234226, + "lat": 48.7352205, + "lon": 6.1666674, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "32", + "note": "Borne de recharge bientôt mise en service. Plein électrique en 2h30. Faire un nouveau repérage dans quelques semaines pour connaitre les modalités des pleins", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 8638540741, + "lat": 47.0477174, + "lon": 6.2871367, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8639817694, + "lat": 49.502378, + "lon": -1.4563833, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "operator": "Leclerc", + "operator:wikidata": "Q1273376" + } + }, + { + "type": "node", + "id": 8639817695, + "lat": 49.5023563, + "lon": -1.4563121, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "operator": "Leclerc", + "operator:wikidata": "Q1273376" + } + }, + { + "type": "node", + "id": 8639825885, + "lat": 48.8656851, + "lon": 1.7923779, + "tags": { + "access": "yes", + "addr:city": "Thoiry", + "addr:street": "Rue de La Mare Agrad", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "ref": "FR-Y29-E78616-001-1;FR-Y29-E78616-001-2", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22kW" + } + }, + { + "type": "node", + "id": 8639825886, + "lat": 48.8656646, + "lon": 1.7924339, + "tags": { + "access": "yes", + "addr:city": "Thoiry", + "addr:street": "Rue de La Mare Agrad", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE", + "ref": "FR-Y29-E78616-001-3;FR-Y29-E78616-001-4", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22kW", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 8639825887, + "lat": 48.8656315, + "lon": 1.7973607, + "tags": { + "access": "yes", + "addr:city": "Thoiry", + "addr:street": "G20 Thoiry", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "G20 Beynes", + "ref:EU:EVSE": "FR*BE1*P78616*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8639920033, + "lat": 48.6164533, + "lon": 2.1278863, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "borne Total 7kw", + "fee": "yes", + "motorcar": "yes", + "operator": "Total", + "operator:wikidata": "Q154037", + "socket:type1": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 8639920034, + "lat": 48.6164631, + "lon": 2.1278561, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "borne Total 7kw", + "fee": "yes", + "motorcar": "yes", + "operator": "Total", + "operator:wikidata": "Q154037", + "socket:type1": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 8639920035, + "lat": 48.6164666, + "lon": 2.1278112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "borne Total 7kw", + "fee": "yes", + "motorcar": "yes", + "operator": "Total", + "operator:wikidata": "Q154037", + "socket:type1": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 8640403384, + "lat": 48.0672703, + "lon": -0.8093923, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "24/7", + "operator": "Schneider", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 8643477517, + "lat": 47.5099699, + "lon": 0.9085973, + "tags": { + "amenity": "charging_station", + "survey:date": "2021-04-19" + } + }, + { + "type": "node", + "id": 8643501610, + "lat": 43.6612473, + "lon": -1.3149849, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*85", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8643512037, + "lat": 43.8761369, + "lon": -1.3036228, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*66", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8643549686, + "lat": 43.5858246, + "lon": -1.4187931, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Labenne Est", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8643549687, + "lat": 43.5866929, + "lon": -1.4203899, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "fixme": "station en double", + "motorcar": "yes", + "name": "IONITY Labenne Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8643589171, + "lat": 44.3229855, + "lon": -0.5813877, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*42", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8645164398, + "lat": 45.5323503, + "lon": 3.2902493, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SIEG 63" + } + }, + { + "type": "node", + "id": 8651762930, + "lat": 45.877528, + "lon": 4.8385066, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Izivia Grand Lyon", + "network:website": "https://grandlyon.izivia.com/", + "ref": "NEU01B", + "socket:type2:output": "7.4 kW" + } + }, + { + "type": "node", + "id": 8651777445, + "lat": 49.4562952, + "lon": 5.4715307, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "G2 Mobility" + } + }, + { + "type": "node", + "id": 8651839018, + "lat": 47.5023224, + "lon": 0.7909521, + "tags": { + "amenity": "charging_station", + "survey:date": "2021-04-21" + } + }, + { + "type": "node", + "id": 8654925685, + "lat": 43.3004472, + "lon": 5.3995641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Metrópole Aix-Marseille-Provence" + } + }, + { + "type": "node", + "id": 8656953860, + "lat": 48.7813839, + "lon": 2.2628436, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 8668354856, + "lat": 46.7826948, + "lon": 0.8832384, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8669359046, + "lat": 49.1198486, + "lon": -0.1863787, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "3", + "description": "Borne de recharge hors service pour le moment. D'après un responsable du magasin son remplacement est prévu d'ici 2023.", + "disused": "yes", + "fee": "no", + "manufacturer": "ABB", + "model": "Terra 23", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:30-20:00; Su 08:30-12:30", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "scooter": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 8671041920, + "lat": 50.6367413, + "lon": 2.7086536, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes Flandre-Lys", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H09*P59268001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8672239978, + "lat": 45.483832, + "lon": 4.7899215, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 8679554959, + "lat": 49.1165411, + "lon": -0.167819, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Moult-Chicheboville, Route de Paris", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8679566559, + "lat": 49.4444989, + "lon": 5.6042011, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8679686872, + "lat": 45.3500479, + "lon": 5.5698979, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "ref:EU:EVSE": "FR*S38*P38563*C", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "https://fr.chargemap.com" + } + }, + { + "type": "node", + "id": 8679779902, + "lat": 43.5474819, + "lon": 3.8344551, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "ref:EU:EVSE": "FR*M34*P34337*002" + } + }, + { + "type": "node", + "id": 8679999200, + "lat": 43.5510055, + "lon": 3.7144321, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Bouygues Energies et Mobilités", + "ref:EU:EVSE": "FR*M34*P34087*001" + } + }, + { + "type": "node", + "id": 8679999203, + "lat": 43.5912865, + "lon": 3.7985734, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34134*001" + } + }, + { + "type": "node", + "id": 8679999204, + "lat": 43.6288087, + "lon": 3.7679621, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34259*001" + } + }, + { + "type": "node", + "id": 8679999205, + "lat": 43.6169893, + "lon": 3.8097442, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Révéo", + "operator": "Révéo", + "ref:EU:EVSE": "FR*M34*P34123*001" + } + }, + { + "type": "node", + "id": 8679999206, + "lat": 43.6387413, + "lon": 3.8279471, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*016" + } + }, + { + "type": "node", + "id": 8679999207, + "lat": 43.6435263, + "lon": 3.8267674, + "tags": { + "amenity": "charging_station", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34116*002" + } + }, + { + "type": "node", + "id": 8679999208, + "lat": 43.6612497, + "lon": 3.9006701, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34077*001" + } + }, + { + "type": "node", + "id": 8680164155, + "lat": 43.6497231, + "lon": 3.9209363, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34057*001" + } + }, + { + "type": "node", + "id": 8680164156, + "lat": 43.5712189, + "lon": 3.8383912, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34270*002" + } + }, + { + "type": "node", + "id": 8680164157, + "lat": 43.6712827, + "lon": 3.9746975, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34058*001" + } + }, + { + "type": "node", + "id": 8680164158, + "lat": 43.6701494, + "lon": 3.9715248, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "operator": "Révéo", + "ref:EU:EVSE": "FR*M34*P34058*002" + } + }, + { + "type": "node", + "id": 8680164159, + "lat": 43.7450417, + "lon": 3.9991627, + "tags": { + "amenity": "charging_station", + "ref:EU:EVSE": "FR*M34*P34265*001" + } + }, + { + "type": "node", + "id": 8680164160, + "lat": 43.6549018, + "lon": 4.008465, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*M34*P34022004", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8680164161, + "lat": 43.654849, + "lon": 4.0084128, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*M34*P34022003", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8680164162, + "lat": 43.6547963, + "lon": 4.0083517, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Montpellier Méditerranée Métropole", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*M34*P34022002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8680164163, + "lat": 43.5903287, + "lon": 3.9331411, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34129*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8680164164, + "lat": 43.5902932, + "lon": 3.9330653, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34129*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8680164165, + "lat": 43.5706801, + "lon": 3.9048089, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "operator": "Révéo", + "ref:EU:EVSE": "FR*M34*P34129*003" + } + }, + { + "type": "node", + "id": 8680307811, + "lat": 43.6122237, + "lon": 3.9121968, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Révéo", + "operator": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*020" + } + }, + { + "type": "node", + "id": 8680307812, + "lat": 43.6010195, + "lon": 3.9150385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*014" + } + }, + { + "type": "node", + "id": 8680307813, + "lat": 43.6046774, + "lon": 3.9190356, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*009" + } + }, + { + "type": "node", + "id": 8680307814, + "lat": 43.6055393, + "lon": 3.911643, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*011" + } + }, + { + "type": "node", + "id": 8680307815, + "lat": 43.5904848, + "lon": 3.8908469, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*001" + } + }, + { + "type": "node", + "id": 8680343282, + "lat": 43.5858543, + "lon": 3.879202, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*006" + } + }, + { + "type": "node", + "id": 8680343283, + "lat": 43.5858658, + "lon": 3.8793165, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*007" + } + }, + { + "type": "node", + "id": 8680343284, + "lat": 43.5918888, + "lon": 3.8505735, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*022" + } + }, + { + "type": "node", + "id": 8680343285, + "lat": 43.6048336, + "lon": 3.8787454, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "operator": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*017" + } + }, + { + "type": "node", + "id": 8680538103, + "lat": 43.4547223, + "lon": 1.5876709, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 8680538104, + "lat": 43.4537714, + "lon": 1.5874677, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 8681871607, + "lat": 45.4098263, + "lon": 4.4470221, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8682508007, + "lat": 43.5439216, + "lon": 3.8501928, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34337*002" + } + }, + { + "type": "node", + "id": 8682642036, + "lat": 45.4402912, + "lon": 4.423858, + "tags": { + "amenity": "charging_station", + "description": "Bornes Allego Paiement appli Smoov ou CB 22 type 2 sans câble,, 43 kwh avec câble type 2 attaché" + } + }, + { + "type": "node", + "id": 8682651166, + "lat": 45.4508326, + "lon": 4.4168267, + "tags": { + "amenity": "charging_station", + "description": "Accessible aux heures d'ouverture du magasin (grilles à l'entrée fermées la nuit).\nGratuit ?\nPas de câble accroché. Type 2 côté borne." + } + }, + { + "type": "node", + "id": 8682660922, + "lat": 45.4462073, + "lon": 4.4199593, + "tags": { + "amenity": "charging_station", + "description": "Nécessité un badge étoles\nGratuit ?\nPas de câble accroché. \nNécessité cable type 2 côté borne." + } + }, + { + "type": "node", + "id": 8682759321, + "lat": 43.603993, + "lon": 3.9113367, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "network": "Révéo", + "ref:EU:EVSE": "FR*M34*P34172*023" + } + }, + { + "type": "node", + "id": 8682759322, + "lat": 43.6062851, + "lon": 3.9132944, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "ref:EU:EVSE": "FR*M34*P34172*013" + } + }, + { + "type": "node", + "id": 8684664533, + "lat": 49.4479892, + "lon": 5.5996485, + "tags": { + "amenity": "charging_station", + "operator": "T2L" + } + }, + { + "type": "node", + "id": 8684664534, + "lat": 49.4478162, + "lon": 5.6001415, + "tags": { + "amenity": "charging_station", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 8684664535, + "lat": 49.5005391, + "lon": 5.7883999, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664536, + "lat": 49.4145741, + "lon": 5.7104012, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8684664537, + "lat": 49.3887538, + "lon": 5.75564, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664538, + "lat": 49.4715161, + "lon": 5.9300566, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8684664539, + "lat": 49.4632384, + "lon": 5.9251234, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8684664540, + "lat": 49.4588379, + "lon": 5.9272959, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664541, + "lat": 49.4464439, + "lon": 5.896565, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664542, + "lat": 49.4291659, + "lon": 5.9308631, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664543, + "lat": 49.4179019, + "lon": 5.9421104, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664544, + "lat": 49.4411971, + "lon": 6.0177547, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664545, + "lat": 49.3667174, + "lon": 5.9059055, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664546, + "lat": 49.3243385, + "lon": 5.9308704, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664547, + "lat": 49.311209, + "lon": 5.9000865, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664548, + "lat": 49.3278531, + "lon": 5.8340735, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664549, + "lat": 49.3211108, + "lon": 5.804448, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664550, + "lat": 49.2891344, + "lon": 5.7790389, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8684664551, + "lat": 49.2934114, + "lon": 5.7418635, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8686405015, + "lat": 45.9062743, + "lon": 6.2209738, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0,37 €/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Dingy-Saint-Clair, Cimetière", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "payment:credit_cards": "yes", + "payment:rfid": "yes", + "ref:EU:EVSE": "FR*S74*P74102*A", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8688425081, + "lat": 47.4628458, + "lon": -0.891838, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place de Flandres-Dunkerque", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8688494378, + "lat": 47.5613367, + "lon": -1.0385452, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Place Saint Nicolas", + "network": "Siéml", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "Siéml", + "payment:cb": "yes", + "payment:contactless": "only", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S49*P49054A", + "socket:type2": "4", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8688494407, + "lat": 47.5221259, + "lon": -0.8856209, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue Noël Pinot", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8688494408, + "lat": 47.5023209, + "lon": -0.799898, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Avenue des Tilleuls", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8688495119, + "lat": 47.4686153, + "lon": -1.0282218, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Rue des Deux Provinces", + "opening_hours": "24/7", + "operator": "SYDELA", + "payment:cb": "yes", + "payment:contactless": "yes", + "payment:visa": "no", + "payment:visa_debit": "no", + "socket:type2": "2", + "socket:type2:output": "18 kW" + } + }, + { + "type": "node", + "id": 8689847362, + "lat": 50.2664868, + "lon": 2.7974394, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "network": "Volkswagen Beaurains SLBA", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Volkswagen Beaurains SLBA", + "ref:EU:EVSE": "FR*G48*PSAIPVOLKSWAGEN62217*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8689847364, + "lat": 50.2655798, + "lon": 2.7969526, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Opel Beaurains", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Opel Beaurains", + "ref:EU:EVSE": "FR*G44*PLEMPEREUROPEL62217*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8689847365, + "lat": 50.2649523, + "lon": 2.7973911, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "motorcar": "yes", + "network": "BMW Beaurains - Arras", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "BMW Beaurains - Arras", + "ref:EU:EVSE": "FR*G56*PLEMPEREURBMW62217*1", + "socket:type2": "6", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8690526036, + "lat": 45.7434738, + "lon": 4.8406218, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fixme": "Prises 22kW, mais connecteur à vérifier", + "operator": "Leasys" + } + }, + { + "type": "node", + "id": 8691198820, + "lat": 48.082754, + "lon": -1.6766661, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Izivia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8691212566, + "lat": 47.4787843, + "lon": -0.5644617, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place du Docteur Bichon", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8692714548, + "lat": 46.1627854, + "lon": 6.2281118, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "vérifier les références sur le terrain", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*S74*P74185*A;FR*EBN*PYPWSTXXUWB", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8693514654, + "lat": 43.4840487, + "lon": -1.5122441, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://www.mobive.fr/", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDEPA 64", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8693688558, + "lat": 47.0266569, + "lon": 3.5340184, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58223*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8696420168, + "lat": 45.3724045, + "lon": 6.3453341, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "7" + } + }, + { + "type": "node", + "id": 8697219991, + "lat": 49.7353448, + "lon": 4.9608015, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8699205980, + "lat": 48.3881623, + "lon": -4.435559, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Brest Métropole", + "ref:EU:EVSE": "FR*M29*P29019*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8699205983, + "lat": 48.3832496, + "lon": -4.3070121, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Électrique", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ACWF", + "socket:chademo": "1", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8703920637, + "lat": 48.1641362, + "lon": -3.127479, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8705311316, + "lat": 44.1605899, + "lon": 6.3069969, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SDE 04" + } + }, + { + "type": "node", + "id": 8707040809, + "lat": 45.1995139, + "lon": 5.7722507, + "tags": { + "access": "private", + "amenity": "charging_station", + "amperage": "32", + "authentication:nfc": "yes", + "capacity": "2", + "name": "EVlink", + "ref": "EV 2S22P44R 22kW", + "socket:type2": "IEC 62196 Type 2a", + "voltage": "400" + } + }, + { + "type": "node", + "id": 8707104233, + "lat": 48.9091115, + "lon": 6.0543941, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 8707104234, + "lat": 48.8835598, + "lon": 6.0520467, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8707104235, + "lat": 48.8440883, + "lon": 6.0713744, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8707695772, + "lat": 47.4122559, + "lon": 0.9819126, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "motorcycle": "no", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 8708714500, + "lat": 48.3082339, + "lon": 6.139614, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 8710203807, + "lat": 48.7727969, + "lon": 6.1321363, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710203808, + "lat": 48.771857, + "lon": 6.1325905, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710203809, + "lat": 48.6132127, + "lon": 6.0924611, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710203810, + "lat": 48.6184285, + "lon": 6.0918821, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 8710203811, + "lat": 48.6571502, + "lon": 6.1285769, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 8710203812, + "lat": 48.6527992, + "lon": 6.1302313, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8710203813, + "lat": 48.6504816, + "lon": 6.1522097, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8710203814, + "lat": 48.652273, + "lon": 6.1528079, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8710203815, + "lat": 48.6666058, + "lon": 6.1861745, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8710203816, + "lat": 48.7020849, + "lon": 6.1825849, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710212917, + "lat": 48.6855195, + "lon": 6.2035836, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710212918, + "lat": 48.7021671, + "lon": 6.2508941, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710450173, + "lat": 48.4680701, + "lon": 6.3225734, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710450174, + "lat": 48.5571064, + "lon": 6.3871598, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8710450175, + "lat": 48.5553622, + "lon": 6.4086724, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710450176, + "lat": 48.6001332, + "lon": 6.4399375, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450177, + "lat": 48.6548611, + "lon": 6.4858677, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450178, + "lat": 48.59849, + "lon": 6.4889837, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450179, + "lat": 48.5915316, + "lon": 6.4894622, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450180, + "lat": 48.5925534, + "lon": 6.4958823, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8710450181, + "lat": 48.5918248, + "lon": 6.4999779, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450182, + "lat": 48.5933546, + "lon": 6.5033378, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450183, + "lat": 48.5967837, + "lon": 6.529423, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450184, + "lat": 48.5741076, + "lon": 6.5296141, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450185, + "lat": 48.5848459, + "lon": 6.5064801, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450187, + "lat": 48.5884382, + "lon": 6.497807, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450188, + "lat": 48.5623575, + "lon": 6.4680617, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450189, + "lat": 48.5330229, + "lon": 6.4612778, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450190, + "lat": 48.5295758, + "lon": 6.4490271, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450191, + "lat": 48.5003456, + "lon": 6.4518361, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450192, + "lat": 48.4994222, + "lon": 6.5013309, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450193, + "lat": 48.495211, + "lon": 6.5098474, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450194, + "lat": 48.4634399, + "lon": 6.5503756, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450195, + "lat": 48.4833382, + "lon": 6.5695421, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450196, + "lat": 48.5294647, + "lon": 6.5415013, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450197, + "lat": 48.5060434, + "lon": 6.6241401, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450198, + "lat": 48.5190069, + "lon": 6.632632, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450199, + "lat": 48.5311228, + "lon": 6.6079804, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450200, + "lat": 48.5394113, + "lon": 6.6047385, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8710450201, + "lat": 48.5780214, + "lon": 6.622319, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450202, + "lat": 48.6118597, + "lon": 6.6514399, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8710450203, + "lat": 48.58362, + "lon": 6.6505311, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8711679561, + "lat": 49.9429063, + "lon": 2.9402415, + "tags": { + "amenity": "charging_station", + "name": "Borne De Recharge" + } + }, + { + "type": "node", + "id": 8711935478, + "lat": 47.3466102, + "lon": 5.1813799, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8712897911, + "lat": 48.4151232, + "lon": -4.4767319, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 8714275997, + "lat": 44.857064, + "lon": -0.6203698, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8714275998, + "lat": 44.8570489, + "lon": -0.6203406, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8714275999, + "lat": 44.8570385, + "lon": -0.6203103, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8714276000, + "lat": 44.8570299, + "lon": -0.6202834, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8714276001, + "lat": 44.8570189, + "lon": -0.6202561, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8714276002, + "lat": 44.8570097, + "lon": -0.6202293, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8719093625, + "lat": 48.5895154, + "lon": 6.8436705, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093626, + "lat": 48.5813723, + "lon": 6.9459242, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093627, + "lat": 48.4971003, + "lon": 6.8960873, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 8719093628, + "lat": 48.4120041, + "lon": 6.8100712, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093629, + "lat": 48.4195581, + "lon": 6.7913366, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093630, + "lat": 48.4440718, + "lon": 6.7351529, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093631, + "lat": 48.4432112, + "lon": 6.739699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093632, + "lat": 48.4471678, + "lon": 6.7398902, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:none": "yes", + "capacity": "2", + "charge": "0,50 EUR/30 min (max 4 EUR)", + "fee": "yes", + "fee:url": "https://paynow.izivia.com", + "name": "PETR Baccarat", + "network": "Izivia", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:debit_cards": "yes", + "payment:pass_izivia": "yes", + "ref": "009938", + "socket:domestic:output": "3 kW", + "socket:type2:output": "22 kW", + "website": "https://www.izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-baccarat/place-du-march%C3%A9/5f2c230ae4b0219a9b94d691" + } + }, + { + "type": "node", + "id": 8719093634, + "lat": 48.4543248, + "lon": 6.6601459, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093635, + "lat": 48.4975026, + "lon": 6.6551564, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093636, + "lat": 48.4878455, + "lon": 6.6944886, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093637, + "lat": 48.4812992, + "lon": 6.7327624, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093638, + "lat": 48.5175356, + "lon": 6.7295292, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093639, + "lat": 48.5285716, + "lon": 6.7411645, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093640, + "lat": 48.5156622, + "lon": 6.7536034, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093641, + "lat": 48.5090321, + "lon": 6.7667892, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093642, + "lat": 48.4975651, + "lon": 6.7494282, + "tags": { + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 8719093643, + "lat": 48.4805473, + "lon": 6.7747006, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093644, + "lat": 48.4800205, + "lon": 6.8156502, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8719093645, + "lat": 48.466917, + "lon": 6.8130157, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8720843328, + "lat": 48.2748766, + "lon": 1.8558008, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "name": "SODETREL", + "operator": "SODETREL" + } + }, + { + "type": "node", + "id": 8721852208, + "lat": 45.744625, + "lon": 4.2206386, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8722081772, + "lat": 48.2079837, + "lon": 3.8914705, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDEA10", + "opening_hours": "24/7", + "operator": "INEO TINEA", + "owner": "SDEA10", + "ref:EU:EVSE": "FR*S10*P10037A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8722814647, + "lat": 45.046879, + "lon": 3.9294667, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Eborn" + } + }, + { + "type": "node", + "id": 8725092980, + "lat": 45.209355, + "lon": 5.6921143, + "tags": { + "amenity": "charging_station", + "description": "Reserved to employee", + "name": "Ze-Watt" + } + }, + { + "type": "node", + "id": 8725388164, + "lat": 48.7409526, + "lon": 2.7641859, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Schneider Electric" + } + }, + { + "type": "node", + "id": 8725573552, + "lat": 48.8922376, + "lon": 6.0513344, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile", + "source": "knowledge", + "website": "https://charge.freshmile.com/location/WSYSBT" + } + }, + { + "type": "node", + "id": 8728990807, + "lat": 48.778917, + "lon": 2.4551768, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "fee": "yes", + "hgv": "no", + "level": "0", + "motorcar": "yes", + "operator": "Ville de Créteil", + "socket:type3": "6" + } + }, + { + "type": "node", + "id": 8730292436, + "lat": 43.289755, + "lon": 5.3999104, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8731155409, + "lat": 48.6042768, + "lon": -1.9769352, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8731341869, + "lat": 48.6376678, + "lon": -1.9054106, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8732341152, + "lat": 48.7824043, + "lon": 2.2195947, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 8733965566, + "lat": 47.0171508, + "lon": -1.0611247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge", + "website": "https://ouestcharge.fr/accueil" + } + }, + { + "type": "node", + "id": 8734463423, + "lat": 48.0618698, + "lon": -0.8132911, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8735640604, + "lat": 48.9618592, + "lon": 1.8124193, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Total", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 8735666251, + "lat": 49.3637667, + "lon": 0.076585, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Izivia Express", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Izivia Express", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*E04*POAZS22811", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8735676036, + "lat": 42.9353484, + "lon": 1.8503052, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Lavelanet - Place Jeanne d'Arc", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09160*002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8736086542, + "lat": 49.5938444, + "lon": -1.3036292, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Quettehou - Parking Halle aux Grains", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 8737214018, + "lat": 42.7303384, + "lon": 2.9298238, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8738407710, + "lat": 49.5643261, + "lon": 3.6290418, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*P0240824", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8739825370, + "lat": 48.4089472, + "lon": -2.0285842, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8740233981, + "lat": 46.3196884, + "lon": 0.3249552, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B016", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8745887465, + "lat": 43.2345667, + "lon": -1.2980388, + "tags": { + "amenity": "charging_station", + "operator": "MObiVE" + } + }, + { + "type": "node", + "id": 8746761047, + "lat": 47.1241906, + "lon": -1.4225645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sydégo" + } + }, + { + "type": "node", + "id": 8749227253, + "lat": 49.1249553, + "lon": -0.2072951, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Bellengreville, Route de Paris", + "network": "MobiSDEC", + "note": "Identifiant EVSE inconnu", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 8749260122, + "lat": 50.9537785, + "lon": 2.2926651, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8750758742, + "lat": 48.9096716, + "lon": -1.350594, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8754067803, + "lat": 48.3701953, + "lon": -4.2141938, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8755306325, + "lat": 43.5438064, + "lon": 4.1303841, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30133002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8757337480, + "lat": 47.3052124, + "lon": 0.7154621, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Modulo", + "ref": "1329" + } + }, + { + "type": "node", + "id": 8764207557, + "lat": 43.2208612, + "lon": 0.0776857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Tarbes - Piscine Paul Boyrie", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65440*009", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8767371558, + "lat": 43.3458167, + "lon": -0.479145, + "tags": { + "amenity": "charging_station", + "name": "Mobive", + "power_supply": "2" + } + }, + { + "type": "node", + "id": 8768946530, + "lat": 43.3610713, + "lon": -0.5101683, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes", + "name": "MObiVE Charging Station" + } + }, + { + "type": "node", + "id": 8769439236, + "lat": 43.5073477, + "lon": 1.6176992, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Fourquevaux, Restes", + "operator": "SDEHG" + } + }, + { + "type": "node", + "id": 8772654775, + "lat": 43.9691322, + "lon": -0.1872768, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8773628733, + "lat": 49.2121724, + "lon": -1.5276481, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "covered": "no", + "motorcar": "yes", + "operator": "SDEM", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 8778697308, + "lat": 48.8717137, + "lon": 1.080286, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SGA mobility" + } + }, + { + "type": "node", + "id": 8778828347, + "lat": 43.5627646, + "lon": 4.0821673, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8779540700, + "lat": 43.2301877, + "lon": 6.5857019, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "Station de recharge pour voitures électriques de l'office de tourisme", + "operator": "55 Charging", + "payment:cards": "yes", + "source": "https://gassin.eu/fr/services/bornes-de-recharge-pour-vehicules-electriques/gassin/station-de-recharge-pour-voitures-electriques-de-l-office-de-tourisme-5716261/", + "start_date": "2020" + } + }, + { + "type": "node", + "id": 8780877787, + "lat": 46.0281127, + "lon": 4.0390051, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "eborn", + "website": "https://moncompte.reseau-eborn.fr/location/KUPUVRMJH2" + } + }, + { + "type": "node", + "id": 8783723572, + "lat": 48.5548894, + "lon": -2.8570877, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Brev'Car", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 8783755061, + "lat": 48.8655031, + "lon": 1.0703269, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8784854135, + "lat": -21.081853, + "lon": 55.2296923, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 8785972311, + "lat": 43.5443459, + "lon": -1.0753474, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "EVBOX" + } + }, + { + "type": "node", + "id": 8787319694, + "lat": 47.2625489, + "lon": -1.6728267, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SYDEGO" + } + }, + { + "type": "node", + "id": 8791535536, + "lat": 45.8606764, + "lon": 5.9483313, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PXANHLH", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8791535538, + "lat": 45.866436, + "lon": 5.9409706, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PKUMQMM", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8794506369, + "lat": -20.9562659, + "lon": 55.3094428, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8794676479, + "lat": 48.9239867, + "lon": 2.2945259, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 8794676480, + "lat": 48.9200371, + "lon": 2.297359, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 8794676481, + "lat": 48.9176321, + "lon": 2.3070283, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "5", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 8794676482, + "lat": 48.9228592, + "lon": 2.3209436, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 8794676483, + "lat": 48.927073, + "lon": 2.3141167, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charging_station:output": "7 kW", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "Sigeif", + "scooter": "no", + "truck": "no", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 8795347317, + "lat": 45.3729833, + "lon": -0.5694969, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2021-06-03" + } + }, + { + "type": "node", + "id": 8795782317, + "lat": 45.4809265, + "lon": -0.5680334, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2021-06-03" + } + }, + { + "type": "node", + "id": 8796069421, + "lat": 43.2348112, + "lon": 1.5744139, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saverdun 3", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09282*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8804785047, + "lat": 43.8673974, + "lon": 5.1404802, + "tags": { + "amenity": "charging_station", + "name": "Valcluse Elec Charging", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 8811015336, + "lat": 43.8603926, + "lon": 7.1988355, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8811273617, + "lat": 43.5293962, + "lon": 3.5195449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Pargoire - Parking du Stade", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34281*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8811605006, + "lat": 45.7599607, + "lon": 0.1278198, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8811976543, + "lat": 45.8872216, + "lon": 0.307948, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8812054828, + "lat": 45.8147266, + "lon": 0.0745033, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8812230525, + "lat": 49.6404819, + "lon": 3.2536938, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "DIRVE 02 Aisne", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S02*PUKHFNX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8812434277, + "lat": 42.6604674, + "lon": 2.9522266, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "motorcar": "yes", + "network": "Village Maurin - Nissan", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Village Maurin - Nissan", + "ref:EU:EVSE": "FR*G49*PMAURINNISSAN*1", + "socket:schuko": "2", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8815045590, + "lat": 47.2742122, + "lon": -1.7791568, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44158B", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8815197057, + "lat": 47.2777382, + "lon": -1.7818437, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "protected": "bollard", + "ref:EU:EVSE": "FR*S44*P44158A", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 8817016136, + "lat": 45.9591677, + "lon": 0.1624268, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8823965217, + "lat": 43.4563318, + "lon": 3.4214912, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pézenas - Avenue François Curée", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34199*003", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8825587102, + "lat": 49.060312, + "lon": 2.5372066, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8826283090, + "lat": 48.4537417, + "lon": -4.255842, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Syndicat Départemental d’Énergie et d’Équipement du Finistère", + "owner:website": "https://www.sdef.fr/", + "ref:EU:EVSE": "FRS29PSDE29BPMJ", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8827634408, + "lat": 48.8468413, + "lon": 2.4413165, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "name": "Vincennes - Pierre Brossolette", + "operator": "Métropolis Recharge", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 8830450898, + "lat": 48.4445596, + "lon": -4.2613533, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "network:website": "https://ouestcharge.fr", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Syndicat Départemental d’Énergie et d’Équipement du Finistère", + "owner:website": "https://www.sdef.fr/", + "ref:EU:EVSE": "FRS29PSDE29BQFD", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8831843889, + "lat": 43.8165549, + "lon": 4.3451277, + "tags": { + "access": "customers", + "addr:city": "Nîmes", + "addr:housenumber": "152", + "addr:postcode": "30900", + "addr:street": "Rue Claude Nicolas Ledoux", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Nîmes Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/nimessupercharger" + } + }, + { + "type": "node", + "id": 8833457311, + "lat": 46.5927429, + "lon": -1.4023076, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85160*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8833693705, + "lat": 47.2636922, + "lon": -1.4473464, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8836396829, + "lat": 45.4426853, + "lon": 4.7683229, + "tags": { + "amenity": "charging_station", + "name": "Sation de recharche Leclerc", + "operator": "E.Leclerc" + } + }, + { + "type": "node", + "id": 8842000521, + "lat": 48.992157, + "lon": 1.0378829, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "prises 1/2 : type 3/type EF;prises 3/4 : type 2/type EF", + "fee": "yes", + "name": "SIEGE 27 | 900.103", + "network": "SIEGE 27", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes" + } + }, + { + "type": "node", + "id": 8844412889, + "lat": 48.7010452, + "lon": 2.13468, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8844768987, + "lat": 49.7120093, + "lon": 4.765011, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8845762277, + "lat": 48.8846137, + "lon": 2.3305876, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0181", + "socket:type3c": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8846588426, + "lat": 43.7820465, + "lon": 7.5125192, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8847854450, + "lat": 45.6357101, + "lon": 4.4623669, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8848273581, + "lat": 48.1469788, + "lon": -0.4127818, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8848418188, + "lat": 46.3079843, + "lon": 4.4852119, + "tags": { + "amenity": "charging_station", + "brand": "sysdel", + "capacity": "2", + "description": "Charge gratuite (juin 2021). Sans la carte adéquate il faut se connecter à une page web (indiqué sur la borne) pour lancer la charge.", + "name": "Station de recharge électrique" + } + }, + { + "type": "node", + "id": 8851345619, + "lat": 48.3120374, + "lon": 4.0695742, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8851345620, + "lat": 48.31204, + "lon": 4.0696225, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8852567505, + "lat": 48.7062905, + "lon": 2.2116869, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "covered": "yes", + "indoor": "room", + "motor_vehicle": "no", + "operator": "Communauté d'agglomération Paris-Saclay" + } + }, + { + "type": "node", + "id": 8856198994, + "lat": 45.5087609, + "lon": 2.8636525, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "name": "Borne IRVE de la résidence Terre de Haut", + "operator": "Terre de Haut", + "payment:Bardge_RFID": "yes", + "payment:contactless": "yes", + "power": "22kW", + "url": "https://terredehaut.org" + } + }, + { + "type": "node", + "id": 8857057217, + "lat": 48.87153, + "lon": 2.2895514, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9016*06", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8857087276, + "lat": 45.1295176, + "lon": 1.2281869, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8857561117, + "lat": 48.6860341, + "lon": 2.1733032, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2021-06-22" + } + }, + { + "type": "node", + "id": 8860096330, + "lat": 43.4872622, + "lon": -1.5005779, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "EVLink" + } + }, + { + "type": "node", + "id": 8861227359, + "lat": 44.6133258, + "lon": 2.0303008, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Révéo", + "ref": "FR*S46*E46102*003*2" + } + }, + { + "type": "node", + "id": 8861227360, + "lat": 44.6133602, + "lon": 2.0302995, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Révéo", + "ref": "FR*S46*E46102*003*1" + } + }, + { + "type": "node", + "id": 8866383359, + "lat": 16.240289, + "lon": -61.5904154, + "tags": { + "amenity": "charging_station", + "operator": "EZdrive" + } + }, + { + "type": "node", + "id": 8867562959, + "lat": 44.6113334, + "lon": 2.0362848, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "Figeac - Boulevard du Colonel Teulié", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref": "FR*S46*E46102*002*2", + "ref:EU:EVSE": "FR*S46*P46102*002", + "socket:chademo": "2", + "socket:chademo:output": "36 kW", + "socket:schuko": "1", + "socket:schuko:output": "11 kW", + "socket:type1_combo": "1", + "socket:type1_combo:output": "36 kw", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type2_combo:output": "36 kW", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8868850682, + "lat": 50.6358031, + "lon": 2.2581419, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62811*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8869992873, + "lat": 49.2421367, + "lon": 4.041248, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "manufacturer": "Nexans", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 8870128204, + "lat": 50.6387123, + "lon": 2.2606762, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62811*001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8875349859, + "lat": 48.7915026, + "lon": 2.0503242, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "RTE" + } + }, + { + "type": "node", + "id": 8875349860, + "lat": 48.7915209, + "lon": 2.0503625, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "RTE" + } + }, + { + "type": "node", + "id": 8875349861, + "lat": 48.7915393, + "lon": 2.0504, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "RTE" + } + }, + { + "type": "node", + "id": 8879142517, + "lat": 48.1995866, + "lon": -4.0870593, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "note": "1 prise 16A3kw\r\n1 prise 32A 22kw", + "operator": "E.Leclerc" + } + }, + { + "type": "node", + "id": 8880341672, + "lat": 43.2802169, + "lon": 5.4083073, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13210*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8880455178, + "lat": 44.7261735, + "lon": 1.3722745, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8880517378, + "lat": 49.2538588, + "lon": 4.0403208, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 8887770598, + "lat": 43.1406659, + "lon": 6.0106078, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8889443423, + "lat": 48.7639846, + "lon": -0.2446035, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8889918703, + "lat": 43.3161783, + "lon": 5.3832121, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Relais Plombières", + "operator": "Total EV Charge", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 8890812388, + "lat": 49.0191918, + "lon": 1.150211, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "SIEGE 27 | 900.057", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "ref:EU:EVSE": "FR*S27*PEVREUX*GAMBETTA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 8892267729, + "lat": 48.9212719, + "lon": 7.4818882, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "name": "ChargePoint" + } + }, + { + "type": "node", + "id": 8892399345, + "lat": 45.599682, + "lon": -0.0502814, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "3", + "socket:typee": "2", + "socket:typee:current": "16", + "socket:typee:output": "3", + "source": "survey", + "survey_date": "2021-03" + } + }, + { + "type": "node", + "id": 8892841796, + "lat": 43.7739, + "lon": 1.6882345, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Sulpice-la-Pointe - Parking Office du Tourisme", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81271*002", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8892854941, + "lat": 43.500024, + "lon": 1.3645375, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8894197804, + "lat": 48.5828822, + "lon": -3.8321203, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8894613511, + "lat": 48.0266468, + "lon": -0.3428488, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8894917547, + "lat": 48.8086071, + "lon": 2.0681464, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Ancotec" + } + }, + { + "type": "node", + "id": 8894917548, + "lat": 48.8085892, + "lon": 2.0682091, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Ancotec" + } + }, + { + "type": "node", + "id": 8894917549, + "lat": 48.8085696, + "lon": 2.0682698, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Ancotec" + } + }, + { + "type": "node", + "id": 8894917565, + "lat": 48.8082321, + "lon": 2.067979, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8894951927, + "lat": 48.8068673, + "lon": 2.0679888, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8895985975, + "lat": 50.8061153, + "lon": 1.8186073, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Pays d'Opale", + "ref:EU:EVSE": "FR*H11*P62412*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8898020061, + "lat": 49.6896633, + "lon": 4.8041031, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8898161670, + "lat": 44.1130637, + "lon": 4.8975145, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8903674081, + "lat": 43.4666908, + "lon": 1.2160111, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8904882128, + "lat": 50.751583, + "lon": 2.262872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62765*007", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8904904153, + "lat": 50.7451272, + "lon": 2.2680165, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "DS Saint Omer", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "DS Saint Omer", + "ref:EU:EVSE": "FR*G44*PSOFIDADS62500*1", + "socket:type2": "6", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8904904154, + "lat": 50.745316, + "lon": 2.267395, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Peugeot Saint Omer", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Peugeot Saint Omer", + "ref:EU:EVSE": "FR*G44*PSOFIDAPEUGEOT62219*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8904981771, + "lat": 49.5567674, + "lon": 3.6031365, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Laon Avenue du Maréchal Foch", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8905206981, + "lat": 50.7593359, + "lon": 2.2294706, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Citroën Saint Omer", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Citroën Saint Omer", + "ref:EU:EVSE": "FR*G44*PSOFIDACITROEN62500*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8905716201, + "lat": 46.6944775, + "lon": 0.8864142, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B002", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8909674519, + "lat": 44.6066571, + "lon": -1.2075095, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8910404301, + "lat": 45.0156501, + "lon": 4.9369773, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SDED Place de l'Isère", + "network": "Eborn", + "operator": "SDED", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 8911207433, + "lat": 43.3161605, + "lon": 5.383202, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "no", + "fee": "yes", + "motorcar": "yes", + "name": "Relais Plombières", + "operator": "Total EV Charge", + "socket:chademo": "1", + "socket:chademo:output": "100kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "175kW" + } + }, + { + "type": "node", + "id": 8911867930, + "lat": 49.9044823, + "lon": 3.627832, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "ref:EU:EVSE": "FR*S02*P0236155", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8912070711, + "lat": 43.0146777, + "lon": 0.8006647, + "tags": { + "amenity": "charging_station", + "description": "id. EJXM1 et EJXM2", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 8913256579, + "lat": 45.1183447, + "lon": 1.2321478, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8913343755, + "lat": 42.6068272, + "lon": 2.9957519, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "freshmile" + } + }, + { + "type": "node", + "id": 8913422419, + "lat": 48.5813804, + "lon": -0.6393676, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8913452616, + "lat": 48.5759585, + "lon": -0.3727526, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8913584608, + "lat": 44.7795844, + "lon": 1.7265558, + "tags": { + "amenity": "charging_station", + "authentication:credit_card": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Gramat - Place de la République", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46128*001", + "scooter": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8913917139, + "lat": 49.6981033, + "lon": 4.8751067, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8914667391, + "lat": 44.3671342, + "lon": 4.6467283, + "tags": { + "amenity": "charging_station", + "source": "BDOrtho IGN" + } + }, + { + "type": "node", + "id": 8915719725, + "lat": 45.72665, + "lon": 4.8632062, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 8917696617, + "lat": 43.3433534, + "lon": 5.4636524, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8917696618, + "lat": 43.3476206, + "lon": 5.4646382, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PQQMLW36C4P", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8919327538, + "lat": 43.3170335, + "lon": 5.4048188, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13213*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8921955521, + "lat": 42.0173054, + "lon": 9.4064599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "E-motum" + } + }, + { + "type": "node", + "id": 8922174617, + "lat": 48.2896392, + "lon": 7.3898997, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8922979247, + "lat": 49.0950986, + "lon": 2.7564322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PDJZAYQ", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8923148998, + "lat": 44.8399214, + "lon": -0.6727228, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Castorama" + } + }, + { + "type": "node", + "id": 8925990104, + "lat": 48.7420116, + "lon": 2.3606429, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8927555164, + "lat": 47.4458983, + "lon": -0.537718, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8928975247, + "lat": 43.4952962, + "lon": -1.4670147, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4" + } + }, + { + "type": "node", + "id": 8929213606, + "lat": 46.3142575, + "lon": 1.419495, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Izivia", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8930796183, + "lat": 45.2525954, + "lon": 1.7612283, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8933448173, + "lat": 45.8677217, + "lon": 1.2712026, + "tags": { + "access": "customers", + "addr:city": "Limoges", + "addr:country": "FR", + "addr:housenumber": "2", + "addr:postcode": "87280", + "addr:street": "Avenue d'Uzurat", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Limoges Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/limogesfrsupercharger" + } + }, + { + "type": "node", + "id": 8933665291, + "lat": 46.3197448, + "lon": -0.4547857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB79191P0099A", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 8933753455, + "lat": 48.1083392, + "lon": -0.7385067, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8935973160, + "lat": 42.775393, + "lon": 2.9082388, + "tags": { + "access": "yes", + "addr:city": "Rivesaltes", + "addr:country": "FR", + "addr:postcode": "66600", + "addr:street": "Rue Georges Mélies", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "email": "charging-france@tesla.com", + "fee": "yes", + "motorcar": "yes", + "name": "Rivesaltes Supercharger", + "network": "Supercharger Tesla", + "opening_hours": "24/7", + "operator": "Tesla France", + "operator:wikidata": "Q478214", + "owner": "Tesla France", + "parking:fee": "no", + "phone": "+33970730850", + "ref:EU:EVSE": "FR*TSC*P17477", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://www.tesla.com/findus/location/supercharger/perpignansupercharger" + } + }, + { + "type": "node", + "id": 8936626293, + "lat": 48.7110982, + "lon": 2.161564, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_station:output": "22 kW", + "fee": "yes", + "name": "Potier", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "008", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8936626294, + "lat": 48.7118676, + "lon": 2.163113, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_station:output": "22 kW", + "fee": "yes", + "name": "Perin", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "006", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8936626298, + "lat": 48.7116838, + "lon": 2.1591416, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "name": "Boulevard Ouest", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626299, + "lat": 48.7105724, + "lon": 2.1617742, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_station:output": "22 kW", + "fee": "yes", + "name": "Lapierre", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "003", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8936626301, + "lat": 48.7104201, + "lon": 2.1647877, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_station:output": "22 kW", + "fee": "yes", + "name": "Guyot", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "009", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8936626303, + "lat": 48.7076909, + "lon": 2.1756989, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "name": "CNRS - LIMSI BAT 507", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626304, + "lat": 48.7119865, + "lon": 2.173301, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fee": "no", + "name": "Nicolas Appert", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626305, + "lat": 48.7115617, + "lon": 2.1670193, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "fee": "no", + "fixme": "Borne en travaux, pas encore ouverte", + "name": "Deck Jack Friedel 2 Ouset", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626306, + "lat": 48.7135492, + "lon": 2.1660242, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "charging_station:output": "22 kW", + "construction": "charging_station", + "fee": "yes", + "name": "Route 128", + "note": "Borne pour le moment hors-service", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8936626307, + "lat": 48.7130006, + "lon": 2.2016734, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fee": "no", + "name": "Vauve", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626308, + "lat": 48.7125402, + "lon": 2.1981879, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "fixme": "vérifier le nom et la capacité", + "name": "Thomas Gobert - Est", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626309, + "lat": 48.7130979, + "lon": 2.1989295, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "name": "Pacilly - Est", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626310, + "lat": 48.6972345, + "lon": 2.1810969, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "fee": "no", + "name": "Siège EPA Paris-Saclay", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626311, + "lat": 48.6994819, + "lon": 2.1748245, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay IAS", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626312, + "lat": 48.6990057, + "lon": 2.1643827, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay Entrée Bures", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626313, + "lat": 48.7021514, + "lon": 2.1644283, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay STAPS", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626314, + "lat": 48.7017513, + "lon": 2.1684999, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "8", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay Bât 332", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626315, + "lat": 48.701939, + "lon": 2.1738697, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay Bât 308", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936626316, + "lat": 48.7014805, + "lon": 2.1741566, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay Stil", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936641417, + "lat": 48.7029126, + "lon": 2.1771527, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay Bibliothèque Universitaire", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936641418, + "lat": 48.7020328, + "lon": 2.1792099, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "name": "UPSaclay Bât 406 CROUS Le Tropical", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8936641419, + "lat": 48.7037782, + "lon": 2.1323812, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "name": "CNRS - Allée de la terrasse", + "operator": "Paris-Saclay Innovation Playground", + "socket:type2": "yes", + "socket:type2:output": "22 kW", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 8937954618, + "lat": 43.4973644, + "lon": 5.3424826, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8940992833, + "lat": 48.8883599, + "lon": 2.3160085, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX17*03", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8941712808, + "lat": 50.4703287, + "lon": 3.2483969, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "motorcar": "yes", + "operator": "Ze-Watt", + "voltage": "230" + } + }, + { + "type": "node", + "id": 8941712809, + "lat": 50.470362, + "lon": 3.2484404, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "motorcar": "yes", + "operator": "Ze-Watt", + "voltage": "230" + } + }, + { + "type": "node", + "id": 8941933573, + "lat": 45.9605303, + "lon": 2.1871054, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "name": "ChargePoint - Renault", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 8942015001, + "lat": 48.5180299, + "lon": -0.7569007, + "tags": { + "addr:city": "Passais-Villages", + "addr:housenumber": "1", + "addr:postcode": "61350", + "addr:street": "Rue de Bretagne", + "amenity": "charging_station", + "capacity": "2", + "phone": "+33 2 33 30 13 81" + } + }, + { + "type": "node", + "id": 8945479936, + "lat": 48.8815711, + "lon": 2.5792839, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 8946565299, + "lat": 49.5928573, + "lon": 4.5034987, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "image": "https://i.imgur.com/vfQzFSm.jpg", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 8946790718, + "lat": 43.2088964, + "lon": 2.4447738, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Trèbes - Parking Le Stade", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S11*P11397*002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8948217688, + "lat": 48.5420603, + "lon": -2.7276188, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8948989482, + "lat": 43.238902, + "lon": 0.0116912, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8948989483, + "lat": 43.2388653, + "lon": 0.0116837, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8950568892, + "lat": 49.0965805, + "lon": -1.5795123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 8951375969, + "lat": 43.2437596, + "lon": 0.0668787, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65440*006", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8951540243, + "lat": 48.9153981, + "lon": 2.2694289, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 8953765274, + "lat": 48.7825329, + "lon": 2.224412, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "no", + "level": "0", + "name": "Borne de recharge Novotel Suites" + } + }, + { + "type": "node", + "id": 8954604239, + "lat": 45.6938284, + "lon": 5.8897327, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8954696197, + "lat": 48.6944229, + "lon": 6.1275367, + "tags": { + "amenity": "charging_station", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 8955079082, + "lat": 43.2407032, + "lon": 0.0754328, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "7.4", + "fee": "yes", + "motorcar": "yes", + "name": "Nex Hotel 1", + "network": "Nex Hotel Tarbes", + "operator": "Zephyre", + "owner": "Nex Hotel Tarbes", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8956325096, + "lat": 43.5249866, + "lon": 5.4318619, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8957177667, + "lat": 47.4513331, + "lon": 6.5780315, + "tags": { + "amenity": "charging_station", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 8957177668, + "lat": 47.4513555, + "lon": 6.5781117, + "tags": { + "amenity": "charging_station", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 8957177669, + "lat": 47.4513669, + "lon": 6.5781082, + "tags": { + "amenity": "charging_station", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 8957177670, + "lat": 47.4513446, + "lon": 6.5780075, + "tags": { + "amenity": "charging_station", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 8957273931, + "lat": 43.362236, + "lon": 5.309551, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13216*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958010975, + "lat": 43.3184619, + "lon": 0.0646125, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Watt else?", + "opening_hours": "24/7", + "operator": "SDE65", + "owner": "SDE65", + "ref:EU:EVSE": "FR*S65*P65390*ANDREST", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958051444, + "lat": 45.8147771, + "lon": 6.0054973, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SYANE - Haute-Savoie", + "ref:EU:EVSE": "FR*EBN*PWYDNKDUR6N", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958051460, + "lat": 45.6742229, + "lon": 6.3912996, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PW5KMVUFDR3", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958082837, + "lat": 45.5550717, + "lon": 6.2554407, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PI8CSUBSTQY", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958087774, + "lat": 45.5575589, + "lon": 6.1566533, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PHAERKHAILF", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958092643, + "lat": 45.6771157, + "lon": 6.3880138, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PZHGBKZ4XPO", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958092685, + "lat": 45.4583143, + "lon": 6.1178997, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PKQBUJVHM6Y", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958092847, + "lat": 45.5012666, + "lon": 6.0509857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PWXHZWTA5ER", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958094499, + "lat": 45.677918, + "lon": 6.3909788, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PNKIJMI48IG", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958096411, + "lat": 45.5885792, + "lon": 5.9240408, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PMRFEJQ1ZVF", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958097231, + "lat": 45.5717832, + "lon": 5.9601634, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PL26DHUKX0L", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958101333, + "lat": 45.5308135, + "lon": 5.9600694, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PIOJV93PGDX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8958125553, + "lat": 42.8275884, + "lon": 0.3341028, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65106*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8959151356, + "lat": 45.9382731, + "lon": 6.0808109, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 8960557899, + "lat": 42.9316249, + "lon": 2.9781345, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Caves - Rue de la Mairie", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11086001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8960790612, + "lat": 45.6486675, + "lon": 5.8581995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PYXWYDYAZRR", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8960823732, + "lat": 45.6451924, + "lon": 5.9139461, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PQKKIKZK3ZD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8962266892, + "lat": 46.3516316, + "lon": -1.430013, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 8963626951, + "lat": 44.0833361, + "lon": 7.0426512, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "image": "https://i.imgur.com/bXne97D.jpg", + "motorcar": "yes", + "network": "EVlink", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 8964096771, + "lat": 47.443627, + "lon": -0.5454689, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8964147091, + "lat": 47.4452186, + "lon": -0.5435818, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8964157236, + "lat": 47.4452617, + "lon": -0.5436053, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8968452008, + "lat": 43.1270977, + "lon": 1.1709432, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09257*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8968603012, + "lat": 50.5737022, + "lon": 3.1998271, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "description": "Borne de recharge pour 2 voitures électriques", + "fee": "no", + "motorcar": "yes", + "network": "Aventim Bouvines - Lot 1", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Aventim Bouvines - Lot 1", + "ref:EU:EVSE": "FR*SSD*PAVENTIM59830*1", + "socket:type2": "8", + "socket:typee": "4", + "source": "Mise à jour 2021" + } + }, + { + "type": "node", + "id": 8968603013, + "lat": 50.5736813, + "lon": 3.1998134, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "description": "Borne de recharge pour 2 voitures électriques", + "fee": "no", + "motorcar": "yes", + "network": "Aventim Bouvines - Lot 2", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Aventim Bouvines - Lot 2", + "ref:EU:EVSE": "FR*SSD*PAVENTIM59830*2", + "socket:type2": "4", + "socket:typee": "2", + "source": "Mise à jour 2021" + } + }, + { + "type": "node", + "id": 8968603014, + "lat": 50.5736619, + "lon": 3.1997981, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "description": "Borne de recharge pour 2 voitures électriques", + "fee": "no", + "motorcar": "yes", + "network": "Aventim Bouvines - Lot 1", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Aventim Bouvines - Lot 1", + "ref:EU:EVSE": "FR*SSD*PAVENTIM59830*1", + "socket:type2": "8", + "socket:typee": "4", + "source": "Mise à jour 2021" + } + }, + { + "type": "node", + "id": 8968603015, + "lat": 50.5736716, + "lon": 3.199989, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "description": "Borne de recharge pour 2 voitures électriques", + "fee": "no", + "motorcar": "yes", + "network": "Aventim Bouvines - Lot 1", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Aventim Bouvines - Lot 1", + "ref:EU:EVSE": "FR*SSD*PAVENTIM59830*1", + "socket:type2": "8", + "socket:typee": "4", + "source": "Mise à jour 2021" + } + }, + { + "type": "node", + "id": 8968645830, + "lat": 50.5791506, + "lon": 3.1894267, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Borne de recharge pour véhicules electriques", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*M59*P59106*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "Mise à jour 2021" + } + }, + { + "type": "node", + "id": 8968922155, + "lat": 46.1409569, + "lon": 6.0792622, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "name": "Réseau eborn Charging Station", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 8971485152, + "lat": 49.0832186, + "lon": 6.2432843, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Borne #4" + } + }, + { + "type": "node", + "id": 8971485153, + "lat": 49.0832857, + "lon": 6.2432928, + "tags": { + "amenity": "charging_station", + "name": "Borne #3" + } + }, + { + "type": "node", + "id": 8971485154, + "lat": 49.0833295, + "lon": 6.243297, + "tags": { + "amenity": "charging_station", + "name": "Borne #2" + } + }, + { + "type": "node", + "id": 8971485155, + "lat": 49.0834033, + "lon": 6.2433063, + "tags": { + "amenity": "charging_station", + "name": "Borne #1" + } + }, + { + "type": "node", + "id": 8971981210, + "lat": 48.8031345, + "lon": 2.0591303, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Lafon", + "motorcar": "yes", + "name": "Parking Rue Lucien Sampaix", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 8971981981, + "lat": 48.7996875, + "lon": 2.0696024, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "IES", + "motorcar": "yes", + "name": "Parking République", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:amperage": "62", + "socket:chademo:output": "24 kW", + "socket:chademo:voltage": "400", + "socket:type2": "1", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:amperage": "62", + "socket:type2_combo:output": "24 kW", + "socket:type2_combo:voltage": "400" + } + }, + { + "type": "node", + "id": 8972655617, + "lat": 43.0647808, + "lon": 6.1498669, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "2", + "charge": "0.59 €/kWh", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "scooter": "no", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2021-08-01" + } + }, + { + "type": "node", + "id": 8973485306, + "lat": 48.6782812, + "lon": -3.9888727, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8974720451, + "lat": 47.8655549, + "lon": -2.4225963, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8975354609, + "lat": 46.0363917, + "lon": 4.0728161, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Roannais Agglomération" + } + }, + { + "type": "node", + "id": 8976581809, + "lat": 48.0173704, + "lon": 2.6720206, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "E-totem" + } + }, + { + "type": "node", + "id": 8979135998, + "lat": 48.2758672, + "lon": -3.5393844, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8979403446, + "lat": 49.0345386, + "lon": 7.9452314, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8983332708, + "lat": 43.9576636, + "lon": 4.7376887, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8983332709, + "lat": 43.9576922, + "lon": 4.7376949, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8983332710, + "lat": 43.9577154, + "lon": 4.7376999, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8983886069, + "lat": 45.1409024, + "lon": 1.0697162, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "MObiVE", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 8986251963, + "lat": 45.8266037, + "lon": 6.2010525, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "fixme": "Position inexacte" + } + }, + { + "type": "node", + "id": 8986838314, + "lat": 49.5898102, + "lon": -1.2807236, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "24/7", + "scooter": "no", + "socket:schuko": "2", + "socket:type2": "2", + "truck": "yes", + "wikimedia_commons": "File:Carrefour Houge8.jpg" + } + }, + { + "type": "node", + "id": 8987373230, + "lat": 47.90021, + "lon": 1.9228039, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q154037", + "operator:wikipedia": "en:TotalEnergies", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8987386505, + "lat": 49.1113832, + "lon": 6.8519728, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8987756885, + "lat": 46.0435295, + "lon": 4.0346381, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Connecteur type 2 max 22kW et prise domestique.", + "motorcar": "yes", + "opening_hours": "24/7", + "website": "http://eborn.fr" + } + }, + { + "type": "node", + "id": 8988552306, + "lat": 49.6322244, + "lon": -1.5905982, + "tags": { + "amenity": "charging_station", + "amperage": "22", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "La Borne", + "opening_hours": "24/7", + "socket:schuko": "2", + "truck": "yes", + "voltage": "yes", + "wikimedia_commons": "File:ELeclerc Cherbourg3.jpg" + } + }, + { + "type": "node", + "id": 8988964378, + "lat": 50.582532, + "lon": 2.5074029, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8988964379, + "lat": 50.5825095, + "lon": 2.5074407, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8989404605, + "lat": 45.4291004, + "lon": -0.7562897, + "tags": { + "amenity": "charging_station", + "operator": "Charge Service", + "socket:type2": "yes", + "source": "survey" + } + }, + { + "type": "node", + "id": 8989734506, + "lat": 45.7978914, + "lon": 1.1376328, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S87*PMB87411", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8989734507, + "lat": 45.7978942, + "lon": 1.1376087, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S87*PMB87411", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 8989818615, + "lat": 43.2851554, + "lon": 5.3836962, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "larecharge", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13206*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8990065268, + "lat": 47.5621811, + "lon": 1.4501125, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8990073334, + "lat": 47.5626171, + "lon": 1.4578791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41149-46", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8992320604, + "lat": 45.842997, + "lon": 1.2527615, + "tags": { + "amenity": "charging_station", + "capacity": "12" + } + }, + { + "type": "node", + "id": 8993438108, + "lat": 49.6186488, + "lon": -1.2593105, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8993613617, + "lat": 44.1245874, + "lon": 4.0772554, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Alès - Parking Hôtel de Ville", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30007*005", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "survey:date": "2021-08-09" + } + }, + { + "type": "node", + "id": 8995983402, + "lat": 49.1203175, + "lon": 6.1772456, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Citiz" + } + }, + { + "type": "node", + "id": 8996919717, + "lat": 49.2794703, + "lon": -0.2045923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "MobiSDEC", + "owner": "SDEC ENERGIE", + "ref:EU:EVSE": "FR*T14*P*ET309", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 8998655722, + "lat": 48.5798356, + "lon": 2.3001673, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 8999740606, + "lat": 43.5885402, + "lon": 3.8889548, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "description": "Station de recharge haute puissance sortie A9 Géant Casino Montpellier AUTOROUTE PRES D'ARENES\nSituée sur le parking du Géant Casino de Montpellier Avenue du Mas d'Argelliers.\nLa station comporte 4 bornes haute puissance et 2 bornes rapides.", + "fee": "yes", + "name": "ALLEGO - Géant Casino Prés d'Arènes", + "operator": "ALLEGO", + "source": "survey;https://www.allego.eu/fr-fr/particuliers/hpc/montepellier-geantcasino" + } + }, + { + "type": "node", + "id": 9000988422, + "lat": 43.5867821, + "lon": -1.4204402, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "fixme": "station en double", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Vinci Autoroutes" + } + }, + { + "type": "node", + "id": 9001214978, + "lat": 43.2495935, + "lon": 1.6781534, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Mazères - Boulevard des Comtes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09185*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "http://www.reveocharge.com" + } + }, + { + "type": "node", + "id": 9005990391, + "lat": 42.8176427, + "lon": 0.3240816, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Lary-Soulan - Rue des Chardons", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65388*002", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9006173465, + "lat": 43.6298255, + "lon": -1.3917482, + "tags": { + "amenity": "charging_station", + "name": "Lidl Charging Station" + } + }, + { + "type": "node", + "id": 9007161201, + "lat": 49.1079889, + "lon": 6.1696724, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé", + "opening_hours": "24/7", + "operator": "BOUYGUES ENERGIES & SERVICES", + "owner": "Ville de Metz", + "socket:domestic": "2", + "socket:domestic:output": "3 kW", + "socket:domestic:voltage": "230", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "source": "data.gouv.fr:Etalab - 01/2020", + "voltage": "230;400", + "website": "https://metz.fr/lieux/lieu-4260.php" + } + }, + { + "type": "node", + "id": 9007168527, + "lat": 49.1103846, + "lon": 6.1739685, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé", + "opening_hours": "24/7", + "operator": "Bouygues Énergies & Services", + "owner": "Ville de Metz", + "parking:fee": "yes", + "socket:domestic": "2", + "socket:domestic:output": "3 kW", + "socket:domestic:voltage": "230", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "source": "data.gouv.fr:Etalab - 01/2020", + "voltage": "230;400", + "website": "https://metz.fr/lieux/lieu-4265.php" + } + }, + { + "type": "node", + "id": 9007614389, + "lat": 42.3068758, + "lon": 9.1486129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "E-Motum", + "payment:credit_cards": "yes", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 9008592672, + "lat": 43.5721432, + "lon": 7.0014225, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "socket:chademo": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 9008592673, + "lat": 43.5723773, + "lon": 7.0011556, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand:wikidata": "Q5176149", + "capacity": "4", + "fee": "yes", + "level": "1", + "motorcar": "yes", + "name": "ChargePoint", + "operator": "Centre Commercial E. Leclerc", + "socket:chademo": "4", + "socket:type2_combo": "4" + } + }, + { + "type": "node", + "id": 9008639195, + "lat": 44.0158695, + "lon": 1.3565535, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9008639196, + "lat": 44.0149859, + "lon": 1.3660005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9009594848, + "lat": 45.1547206, + "lon": 2.6219635, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "yes", + "operator": "EVBox", + "operator:wikidata": "Q28406392" + } + }, + { + "type": "node", + "id": 9009626730, + "lat": 45.4582121, + "lon": 4.7612704, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 9009659879, + "lat": 47.4062364, + "lon": -1.0957132, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44163A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9011054645, + "lat": 44.2670153, + "lon": 5.8584377, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9012842717, + "lat": 47.2624015, + "lon": 4.556675, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9013852694, + "lat": 44.0296588, + "lon": 5.4909698, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Vaucluse'elec", + "capacity": "2", + "fee": "yes", + "name": "Vaucluse'elec", + "operator": "Vaucluse'elec", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9013968465, + "lat": 46.1985688, + "lon": 1.2978957, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "no", + "image": "https://imgur.com/a/Qu26i9J", + "opening_hours": "24/7", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 9014618303, + "lat": -20.9794171, + "lon": 55.3178946, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9014641996, + "lat": 45.7088552, + "lon": 4.5835262, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "covered": "no", + "fee": "yes", + "name": "CCVL - Yzeron - Lac du Ronzey", + "network": "IZIVIA", + "operator": "Communauté de Commune des Vallons du Lyonnais", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9014802272, + "lat": 48.6189175, + "lon": 2.1260567, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Total", + "operator:wikidata": "Q154037", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9015447209, + "lat": 48.8009414, + "lon": 2.0641263, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Lafon", + "motorcar": "yes", + "name": "Parking Place Madame de Maintenon", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 9015453261, + "lat": 48.8081042, + "lon": 2.0521653, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "G2Mobility", + "motorcar": "yes", + "name": "1 Place Olivier Messiaen", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "ref:EU:EVSE": "FR*SIG*PSIGE*24", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9016619833, + "lat": 48.8074084, + "lon": -3.4417415, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Brev'Car" + } + }, + { + "type": "node", + "id": 9016654112, + "lat": 45.7484258, + "lon": 4.693158, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "covered": "no", + "fee": "yes", + "name": "CCVL - Grézieu-La-Varenne - Mairie", + "network": "IZIVIA", + "operator": "Communauté de Commune des Vallons du Lyonnais", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9016820182, + "lat": 45.7395006, + "lon": 4.6828288, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22 kW", + "covered": "no", + "manufacturer": "Schneider Electric", + "name": "Parking CCVL", + "operator": "Communauté de Commune des Vallons du Lyonnais", + "parking:fee": "no", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9016820183, + "lat": 45.7394354, + "lon": 4.6826084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "covered": "no", + "fee": "yes", + "name": "CCVL - Vaugneray - Parking Chemin du Stade", + "network": "IZIVIA", + "operator": "Communauté de Commune des Vallons du Lyonnais", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9017594317, + "lat": 46.6313687, + "lon": 5.2174795, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2021-08-18" + } + }, + { + "type": "node", + "id": 9018140879, + "lat": 43.573202, + "lon": 7.1251314, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "WiiiZ Parking Ponteil", + "network": "WiiiZ", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 9021371340, + "lat": 44.6410447, + "lon": 3.6754807, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Châteauneuf de Randon - Place Du Guesclin", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE48 48", + "ref:EU:EVSE": "FR*S48*P48043*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9022238968, + "lat": 49.7754047, + "lon": 4.7425294, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "AM 051 - Montcy-Notre-Dame", + "opening_hours": "24/7", + "operator": "Clem", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9022455315, + "lat": 46.1520617, + "lon": -1.1468103, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "fee": "yes", + "level": "0" + } + }, + { + "type": "node", + "id": 9022580243, + "lat": 44.8659281, + "lon": 4.8645683, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9022580244, + "lat": 44.8658292, + "lon": 4.8648016, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9022646691, + "lat": 45.8446317, + "lon": 4.8542781, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "description": "7kW\nFSM01A\nMAT-009027", + "fee": "yes", + "name": "IZIVIA", + "operator": "Grand Lyon" + } + }, + { + "type": "node", + "id": 9023301544, + "lat": 47.214859, + "lon": 5.9469405, + "tags": { + "amenity": "charging_station", + "brand": "The Keepers", + "opening_hours": "24/7", + "operator": "The Keepers", + "ref": "Nairobi" + } + }, + { + "type": "node", + "id": 9023837969, + "lat": 49.243843, + "lon": 0.5850341, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE103", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PSTGEORGESVIEVREMAIRIE", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9024333024, + "lat": 43.277542, + "lon": 1.3478744, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lézat-sur-Lèze - Boulodrome Boulevard Pasteur", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09167*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9024333025, + "lat": 43.2898021, + "lon": 1.3425692, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9024842127, + "lat": 43.393554, + "lon": 5.340986, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13071*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9025307973, + "lat": 48.8278645, + "lon": 1.9574901, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9025307974, + "lat": 48.826782, + "lon": 1.9619668, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9025505630, + "lat": 49.38857, + "lon": 3.336628, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9026387219, + "lat": 47.0720697, + "lon": 5.3702243, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "8", + "fee": "no", + "socket:bosch_3pin": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9026723801, + "lat": 43.593291, + "lon": 2.2176256, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "Castres - Mélou - Route de Toulouse", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81065*008", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9026757886, + "lat": 48.0246491, + "lon": 7.0807614, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9026800307, + "lat": 47.0561765, + "lon": -0.877692, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.2 €/kW", + "fee": "yes", + "name": "Place du 6 Juin 1944", + "network": "SIEML", + "operator": "Ouest Charge", + "owner": "SIEML", + "socket:type2": "2", + "socket:type2:output": "22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9028303031, + "lat": 49.1149731, + "lon": 6.1799485, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Bornes Parking Coislin" + } + }, + { + "type": "node", + "id": 9028304028, + "lat": 49.1149708, + "lon": 6.1799144, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Bornes Parking Coislin", + "network": "Parking COISLIN", + "opening_hours": "24/7", + "operator": "Q-Park", + "operator:wikidata": "Q1127798", + "owner": "Metz Métropole", + "ref:EU:EVSE": "FR*123*P000MM020", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9028591846, + "lat": 48.9745699, + "lon": 2.4951364, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "level": "0", + "payment:cash": "no" + } + }, + { + "type": "node", + "id": 9029442407, + "lat": 48.8642069, + "lon": 2.3977767, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9020*01", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "survey" + } + }, + { + "type": "node", + "id": 9032171308, + "lat": 48.0156176, + "lon": -4.0798406, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9032792742, + "lat": 50.2806895, + "lon": 2.7822943, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Leclerc" + } + }, + { + "type": "node", + "id": 9033089120, + "lat": 47.7031255, + "lon": -2.6506305, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9033772906, + "lat": 48.8278663, + "lon": 2.3809653, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0103", + "socket:type3c": "4", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 9034435181, + "lat": 48.8467408, + "lon": -1.580265, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "e-charge50@sdem50.fr", + "fee": "yes", + "motorcar": "yes", + "network": "e-charge50", + "opening_hours": "24/7", + "operator": "Total Marketing France", + "owner": "SDEM50", + "payment:credit_cards": "no", + "phone": "+33809107584", + "ref:EU:EVSE": "FR*S50*P50350001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9034916693, + "lat": 44.0626521, + "lon": 1.0234345, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "SDE82 Charging Station", + "operator": "SDE82" + } + }, + { + "type": "node", + "id": 9036304699, + "lat": 45.5937584, + "lon": 5.2771682, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref:EU:EVSE": "FR*EBN*PNPBXS3RZKU", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9037797389, + "lat": 49.7870315, + "lon": 3.3355413, + "tags": { + "amenity": "charging_station", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 9038065730, + "lat": 45.69124, + "lon": 4.9491678, + "tags": { + "access": "yes", + "addr:street": "Rue du 8 Mai 1945", + "amenity": "charging_station", + "capacity": "4", + "name": "Bel Air", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9038065731, + "lat": 45.6955543, + "lon": 4.9543609, + "tags": { + "access": "yes", + "amenity": "charging_station", + "name": "Rue Louis Braille Ménival", + "network:wikidata": "Q86671322", + "network:wikipedia": "fr:Izivia", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9038228429, + "lat": 49.1665465, + "lon": -1.5960665, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "e-charge50", + "parking:fee": "no", + "socket:type2": "2", + "website": "https://www.e-charge50.fr/" + } + }, + { + "type": "node", + "id": 9040818153, + "lat": 45.1813955, + "lon": 5.7215156, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Grenoble-Alpes Métropole", + "ref:EU:EVSE": "FR*M38*E38185*007*1", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:typee": "1", + "socket:typee:output": "3.7" + } + }, + { + "type": "node", + "id": 9041074920, + "lat": 49.1116089, + "lon": 6.8515852, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9041152073, + "lat": 45.8202584, + "lon": 6.7276549, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE - Haute-Savoie", + "ref": "FR*S74*P74085*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9042395711, + "lat": 43.5535234, + "lon": 2.1761683, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Viviers-lès-Montagnes - Place du 8 Mai 1945", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81325*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9043827526, + "lat": 47.2565962, + "lon": -2.3477384, + "tags": { + "amenity": "charging_station", + "fixme": "6 bornes de recharge électrique par ponton à rajouter", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 9044271268, + "lat": 48.9256721, + "lon": 1.4435948, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref:EU:EVSE": "FR*S27*PBUEIL*GARE", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 9044991737, + "lat": 47.2604032, + "lon": -2.3439123, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9045750985, + "lat": 48.8846508, + "lon": 1.4606335, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 9046375277, + "lat": 44.5913146, + "lon": 3.9050859, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9047543016, + "lat": 47.5714364, + "lon": 2.8303997, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9048058022, + "lat": 45.6980389, + "lon": 4.9754912, + "tags": { + "access": "customers", + "addr:city": "Saint-Priest", + "addr:postcode": "69800", + "addr:street": "A43 - Aire de Saint-Priest", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Saint-Priest Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedesaintpriestsupercharger" + } + }, + { + "type": "node", + "id": 9050058693, + "lat": 43.5301938, + "lon": 1.2088746, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9050519017, + "lat": 43.6425549, + "lon": 1.4665628, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 9050816845, + "lat": 47.9359506, + "lon": -3.4150632, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ADLH", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9050938178, + "lat": 45.6798328, + "lon": 4.9574465, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "IZIVIA - 983 Rue des Albatros", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9053395319, + "lat": 48.6732218, + "lon": 5.9239275, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Volkswagen", + "source": "survey" + } + }, + { + "type": "node", + "id": 9053479590, + "lat": 49.108124, + "lon": 1.4993141, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Borne de recharge IZIVIA", + "operator": "EDF" + } + }, + { + "type": "node", + "id": 9053930969, + "lat": 45.717454, + "lon": 4.9275227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Cours du Professeur Jean Bernard", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "ref": "SPR02B" + } + }, + { + "type": "node", + "id": 9054085460, + "lat": 46.4832786, + "lon": -1.7602969, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9054085461, + "lat": 46.4832541, + "lon": -1.7602939, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9054085462, + "lat": 46.4832248, + "lon": -1.7602902, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9055468203, + "lat": 45.7164822, + "lon": 4.9581516, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Lidl Charging Station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9055594350, + "lat": 44.6595935, + "lon": -1.1651984, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Bornes recharge", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9056124966, + "lat": 49.0115372, + "lon": 1.1690237, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "operator": "McDo" + } + }, + { + "type": "node", + "id": 9056125015, + "lat": 49.0149872, + "lon": 1.1744103, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9056125016, + "lat": 49.0151587, + "lon": 1.1744355, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9056606927, + "lat": 46.116762, + "lon": 3.4101572, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "BAHK1;BAHK2", + "ref:EU:EVSE": "FR*EBN*PSOURCE", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type3c": "2", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.eborn.fr/" + } + }, + { + "type": "node", + "id": 9058043542, + "lat": 43.6074617, + "lon": 3.8909933, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9058043543, + "lat": 43.6075253, + "lon": 3.8909991, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9060365817, + "lat": 43.6636667, + "lon": 7.1720295, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:none": "no", + "capacity": "2", + "name": "Prise de Nice - Cagnes-sur-Mer - Parking Val Fleuri", + "operator": "Prise de Nice", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 9060512818, + "lat": 44.3620625, + "lon": 2.5632909, + "tags": { + "access": "private", + "amenity": "charging_station", + "indoor": "no", + "source": "survey 2021", + "support": "wall_mounted" + } + }, + { + "type": "node", + "id": 9060512819, + "lat": 44.362067, + "lon": 2.5632632, + "tags": { + "access": "private", + "amenity": "charging_station", + "indoor": "no", + "source": "survey 2021", + "support": "wall_mounted" + } + }, + { + "type": "node", + "id": 9061270723, + "lat": 48.4279079, + "lon": -4.3154363, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29FAQF" + } + }, + { + "type": "node", + "id": 9062376826, + "lat": 45.440285, + "lon": -0.4345484, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VKTS1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9062379929, + "lat": 45.8321843, + "lon": 4.878305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "7kW\nSAVO1A et SAV01B", + "fee": "yes", + "name": "Izivia", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9063556406, + "lat": 46.163733, + "lon": -1.1454421, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Mairie de La Rochelle" + } + }, + { + "type": "node", + "id": 9063831003, + "lat": 48.8311733, + "lon": 2.3985099, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9063831004, + "lat": 48.8311288, + "lon": 2.3985825, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9063831005, + "lat": 48.8310983, + "lon": 2.3986255, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9063831006, + "lat": 48.8310675, + "lon": 2.398683, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9063831007, + "lat": 48.8310275, + "lon": 2.3987429, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9063845157, + "lat": 48.8312068, + "lon": 2.3984566, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9064458108, + "lat": 43.6357921, + "lon": 3.8532859, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9064613317, + "lat": 44.1005718, + "lon": 3.0762147, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Condamine", + "network": "Révéo", + "operator": "Révéo", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12145*001", + "scooter": "no", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9064617917, + "lat": 44.0804868, + "lon": 3.0410808, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parking E.leclerc", + "network": "E.Leclerc Energie ", + "scooter": "no" + } + }, + { + "type": "node", + "id": 9064618517, + "lat": 43.9003386, + "lon": 3.1786419, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Révéo", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "owner": "SIEDA 12", + "ref:EU:EVSE": "FR*S12*P12077*001", + "scooter": "no", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9067718615, + "lat": 44.7712601, + "lon": -1.1168226, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 9067925790, + "lat": 48.8567339, + "lon": 7.318819, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9072772076, + "lat": 42.6363484, + "lon": 8.9351284, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9073346618, + "lat": 45.6521075, + "lon": 4.7953698, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9073564683, + "lat": 47.2154581, + "lon": 5.9535374, + "tags": { + "amenity": "charging_station", + "operator": "Volvo" + } + }, + { + "type": "node", + "id": 9073723800, + "lat": 43.2861999, + "lon": 5.3700687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "larecharge", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13207*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9073795182, + "lat": 49.7368305, + "lon": 4.7440588, + "tags": { + "access": "customers", + "addr:city": "Charleville-Mézières", + "addr:country": "FR", + "addr:postcode": "08000", + "addr:street": "Rue Louise Michel", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Charleville-Mézières Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/charlevillemezieressupercharger" + } + }, + { + "type": "node", + "id": 9074176100, + "lat": 48.7789158, + "lon": 2.2891889, + "tags": { + "amenity": "charging_station", + "fixme": "6 bornes de recharge voiture - à détailler", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9074300557, + "lat": 49.0302278, + "lon": 1.1363104, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SIEGE 27 | 900.079", + "network": "SIEGE 27", + "operator": "SGA Mobility", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9077147664, + "lat": 44.988609, + "lon": 4.975032, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "12", + "fee": "no" + } + }, + { + "type": "node", + "id": 9079814829, + "lat": 50.1040449, + "lon": 1.8287368, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PABBEVITAL", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9081243318, + "lat": 42.6045907, + "lon": 8.9285065, + "tags": { + "amenity": "charging_station", + "operator": "DriveEco" + } + }, + { + "type": "node", + "id": 9081616174, + "lat": 47.3517795, + "lon": 6.349157, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9082788939, + "lat": 41.4925338, + "lon": 9.0558627, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9083704606, + "lat": 49.3035063, + "lon": -1.2421507, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9084645939, + "lat": 43.9487912, + "lon": 6.8107012, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9089490845, + "lat": 48.3719481, + "lon": -4.3706709, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Brest Métropole", + "ref:EU:EVSE": "FR*M29*P29189*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9091288604, + "lat": 45.6230131, + "lon": 2.4573205, + "tags": { + "addr:city": "Merlines", + "addr:postcode": "19340", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "yes", + "network": "PICOTY", + "operator": "Avia", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9091702517, + "lat": 45.7796068, + "lon": 3.1280764, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9092480097, + "lat": 45.7782186, + "lon": 3.1024662, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "no", + "operator": "EFFIA", + "socket:type2": "1", + "socket:type2:output": "5", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9092480098, + "lat": 45.7781569, + "lon": 3.1023066, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "operator": "EFFIA", + "socket:type2": "2", + "socket:type2:output": "5", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9093723473, + "lat": 43.2241228, + "lon": 0.0497343, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9093908936, + "lat": 45.8510663, + "lon": 4.2255851, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Izivia", + "operator": "Avia", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "24 kW" + } + }, + { + "type": "node", + "id": 9095089060, + "lat": 47.0886095, + "lon": 5.4895047, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9096916403, + "lat": 45.6553895, + "lon": 5.8596906, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PDWG6IHEU7O", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9096972926, + "lat": 45.6449594, + "lon": 5.8690273, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PFRD1O42B4X", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9097551700, + "lat": 48.1808375, + "lon": 2.7309301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "EcoCharge77", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9098428173, + "lat": 45.0015771, + "lon": 0.0366246, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9100295876, + "lat": 48.8894354, + "lon": 6.2274617, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 9101723736, + "lat": 47.3066079, + "lon": 5.9531207, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9103371842, + "lat": 44.8895129, + "lon": -0.5642376, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "no" + } + }, + { + "type": "node", + "id": 9103371844, + "lat": 44.8895392, + "lon": -0.564281, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "no" + } + }, + { + "type": "node", + "id": 9103442592, + "lat": 43.4928152, + "lon": 6.5349788, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "Eborn", + "owner": "SymielecVar", + "socket:type2": "2", + "socket:type3": "2", + "socket:type3c": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.eborn.fr" + } + }, + { + "type": "node", + "id": 9103788774, + "lat": 48.2361537, + "lon": 4.7022316, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "operator": "SDEA - l'Aube", + "ref": "FR*S10*EUEAU*1;FR*S10*EUEAU*2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9105397181, + "lat": 48.6257689, + "lon": 7.7023034, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Freshmile", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "operator": "Freshmile", + "website": "https://charge.freshmile.com/location/A3MGRRDRGB" + } + }, + { + "type": "node", + "id": 9105656017, + "lat": 48.4503055, + "lon": 1.4916472, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9105796740, + "lat": 48.3183187, + "lon": 2.0884779, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9105861997, + "lat": 45.2886424, + "lon": 0.7522145, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE" + } + }, + { + "type": "node", + "id": 9113592889, + "lat": 45.050848, + "lon": 0.391331, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE 24", + "ref:EU:EVSE": "FR*S24*PMB24*126", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9116569361, + "lat": 43.4440693, + "lon": -1.5857518, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9119737807, + "lat": 47.4382193, + "lon": -0.2141133, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9121746907, + "lat": 49.4095519, + "lon": -1.3130533, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9121985292, + "lat": 48.8209224, + "lon": 2.4275427, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 9121987538, + "lat": 48.8203149, + "lon": 2.4319556, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9124383065, + "lat": 45.4135142, + "lon": 0.9208936, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9124424906, + "lat": 45.8098624, + "lon": 4.7980769, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9124499067, + "lat": 47.6493709, + "lon": -2.7127454, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9124913388, + "lat": 44.8405353, + "lon": 4.8908527, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "ref:EU:EVSE": "FR*S26*P26124*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9126027013, + "lat": 45.1532931, + "lon": 1.5090242, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "Mo-Fr 08:30-20:00", + "operator": "Lidl", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9126027014, + "lat": 45.1532898, + "lon": 1.5089595, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "opening_hours": "Mo-Fr 08:30-20:00", + "operator": "Lidl", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9127861987, + "lat": 48.9806859, + "lon": 2.2685394, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9128695688, + "lat": 45.7967192, + "lon": 1.1456722, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S87*PMB87511", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9128695689, + "lat": 45.7967352, + "lon": 1.1456873, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "charging_station:output": "22 kVA", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S87*PMB87512", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9129152389, + "lat": 48.8292317, + "lon": 2.8121222, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9129740611, + "lat": 48.7963976, + "lon": 2.6499776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9129740612, + "lat": 48.796378, + "lon": 2.6499544, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9129740613, + "lat": 48.7963583, + "lon": 2.6499313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9129740614, + "lat": 48.7963386, + "lon": 2.6499082, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9129740615, + "lat": 48.796319, + "lon": 2.649885, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9131385730, + "lat": 48.8962662, + "lon": 2.4587106, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9131385732, + "lat": 48.8962657, + "lon": 2.4586744, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9131486472, + "lat": 48.8959536, + "lon": 2.4585074, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "6" + } + }, + { + "type": "node", + "id": 9131486473, + "lat": 48.8960231, + "lon": 2.4586147, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "4" + } + }, + { + "type": "node", + "id": 9131486474, + "lat": 48.8960578, + "lon": 2.4586683, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "3" + } + }, + { + "type": "node", + "id": 9131486475, + "lat": 48.8960926, + "lon": 2.458722, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "2" + } + }, + { + "type": "node", + "id": 9131486476, + "lat": 48.8961273, + "lon": 2.4587756, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Autolib'", + "ref": "1" + } + }, + { + "type": "node", + "id": 9132033251, + "lat": 44.0718377, + "lon": 2.0968989, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Monestiès - Place du Foirail", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S81*P81170*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9133210230, + "lat": 44.1574255, + "lon": 1.8930785, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "SDE82" + } + }, + { + "type": "node", + "id": 9133331814, + "lat": 49.0493036, + "lon": 2.5006831, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9133344812, + "lat": 47.2899485, + "lon": 3.8187817, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEEN", + "owner": "SIEEEN", + "ref:EU:EVSE": "FR*S58*P58145*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9134843965, + "lat": 46.5706369, + "lon": 0.4652076, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9135965190, + "lat": 47.5907498, + "lon": 7.5540205, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Saint-Louis", + "owner": "Saint-Louis", + "ref:EU:EVSE": "FR*A68*P68297*C", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9136046396, + "lat": 50.5257997, + "lon": 1.6274968, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9137626423, + "lat": 45.6962866, + "lon": -0.0823706, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9138248975, + "lat": 49.8595647, + "lon": 2.8320071, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "KiWhi Pass Charging Station" + } + }, + { + "type": "node", + "id": 9138248978, + "lat": 49.8595731, + "lon": 2.8317784, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "name": "EFFIA Charging Station", + "operator": "Effia", + "operator:wikidata": "Q3045894" + } + }, + { + "type": "node", + "id": 9138536477, + "lat": 45.3217683, + "lon": 0.5892156, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "MObiVE", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9140381897, + "lat": 45.5247276, + "lon": 4.873881, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9140381898, + "lat": 45.521366, + "lon": 4.8727967, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9140449282, + "lat": 48.4746238, + "lon": 1.0239848, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charge": "0.25€/kwh", + "fee": "yes", + "network": "Newmotion", + "opening_hours": "24/7", + "operator": "Newmotion", + "socket:type2": "1", + "website": "https://www.tnm.io/09910023" + } + }, + { + "type": "node", + "id": 9140449283, + "lat": 48.4746213, + "lon": 1.0239828, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charge": "0.25€/kwh", + "fee": "yes", + "network": "Newmotion", + "opening_hours": "24/7", + "operator": "Newmotion", + "socket:type2": "1", + "website": "https://www.tnm.io/08910277" + } + }, + { + "type": "node", + "id": 9142393372, + "lat": 45.5886958, + "lon": -0.0474652, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9142393373, + "lat": 45.588687, + "lon": -0.0474356, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9142756320, + "lat": 48.0066479, + "lon": -4.0958322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Ouest charge", + "owner": "SDEF", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 9142756404, + "lat": 48.0107819, + "lon": -4.0952622, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 9143031316, + "lat": 49.1201483, + "lon": 2.4285289, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9144141067, + "lat": 47.4935269, + "lon": -0.5656235, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9150900347, + "lat": 44.0617165, + "lon": 5.1155573, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 9150981904, + "lat": 49.0159251, + "lon": 2.1774817, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Freshmile", + "ref": "JFXF", + "source": "survey 2021", + "website": "https://my.freshmile.com/charge/JFXF1" + } + }, + { + "type": "node", + "id": 9154611220, + "lat": 48.9341555, + "lon": 2.5353587, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9154611221, + "lat": 48.934211, + "lon": 2.5352776, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9154611222, + "lat": 48.9342709, + "lon": 2.535173, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9155088384, + "lat": 43.532811, + "lon": 3.9274339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Palavas-les-Flots - Avenue de L'Abbé Brocardi", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34192*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9156300286, + "lat": 48.6784006, + "lon": 2.5286327, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9156300291, + "lat": 48.6784363, + "lon": 2.5294694, + "tags": { + "amenity": "charging_station", + "capacity": "6" + } + }, + { + "type": "node", + "id": 9156400239, + "lat": 46.0065611, + "lon": 6.6897914, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74014*B", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9157340459, + "lat": 43.673828, + "lon": 4.6380512, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9157340464, + "lat": 43.6737567, + "lon": 4.6380979, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9159382263, + "lat": 43.6114331, + "lon": 3.8668314, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22", + "fee": "yes", + "motorcar": "yes", + "name": "Montpellier - Boulevard des Arceaux", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Montpellier Méditerranée Métropole", + "ref:EU:EVSE": "FR*M34*P34172*021", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9160899865, + "lat": 45.820233, + "lon": 6.727681, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SYANE", + "owner": "SYANE", + "ref:EU:EVSE": "FR*S74*P74085*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9161424063, + "lat": 46.6714018, + "lon": 5.5275184, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": ":hager", + "model": "XEV601C", + "motorcar": "yes", + "name": "Montmorot, Bureau Vallée", + "operator": "freshmile", + "ref": "ZKZP1;ZKZP2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9162829814, + "lat": 47.5696757, + "lon": 6.762924, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9164661457, + "lat": 41.7075234, + "lon": 8.7937038, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9165015425, + "lat": 45.992154, + "lon": 5.0263502, + "tags": { + "amenity": "charging_station", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 9165015427, + "lat": 45.9921261, + "lon": 5.0263234, + "tags": { + "amenity": "charging_station", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 9165015428, + "lat": 46.0071255, + "lon": 5.0363805, + "tags": { + "amenity": "charging_station", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 9165015429, + "lat": 46.0071064, + "lon": 5.0363932, + "tags": { + "amenity": "charging_station", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 9167418207, + "lat": 50.6307956, + "lon": 3.120287, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "JLR - Villeneuve d'Ascq", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "JLR - Villeneuve d'Ascq", + "ref:EU:EVSE": "FR*G41*PJLRASCQ59650*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9167418208, + "lat": 50.6318887, + "lon": 3.1204761, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Volvo Villeneuve d'Ascq", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Volvo Villeneuve d'Ascq", + "ref:EU:EVSE": "FR*G46*PDUGARDINVOLVO59650*1", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9167418209, + "lat": 50.632199, + "lon": 3.1205501, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Mitsubishi Villeneuve d'Ascq", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Mitsubishi Villeneuve d'Ascq", + "ref:EU:EVSE": "FR*G59*PDUGARDINMITSUBISHI59650*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9167418210, + "lat": 50.6325857, + "lon": 3.1206325, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "no", + "motorcar": "yes", + "network": "Ford Villeneuve d'Ascq", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Ford Villeneuve d'Ascq", + "ref:EU:EVSE": "FR*G39*PDUGARDINFORD59650*1", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9167622913, + "lat": 50.6170641, + "lon": 3.1264289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "CEETRUS Roncq3 Kiabi", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "CEETRUS Roncq3 Kiabi", + "ref:EU:EVSE": "FR*SSD*PCEETRUS59656*3", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9169122774, + "lat": 45.1676492, + "lon": 4.2938641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE43 - Haute-Loire", + "ref:EU:EVSE": "FR*EBN*PKKT7GPURKL", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9170024627, + "lat": 48.8445766, + "lon": 2.4343878, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "fee": "yes", + "name": "Vincennes - Général de Gaulle", + "operator": "Métropolis Recharge", + "parking:fee": "yes", + "socket:type2": "4", + "socket:type2:output": "7 kW", + "socket:typee": "1", + "socket:typee:output": "3.6 kW" + } + }, + { + "type": "node", + "id": 9170440150, + "lat": 48.7840022, + "lon": 2.2209162, + "tags": { + "access": "yes", + "addr:city": "Vélizy-Villacoublay", + "addr:country": "FR", + "addr:housenumber": "2", + "addr:postcode": "78140", + "addr:street": "Avenue de l'Europe", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Vélizy 2 Supercharger", + "network": "Tesla", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "no", + "payment:cash": "no", + "payment:membership_card": "no", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "truck": "no", + "website": "https://www.tesla.com/findus/location/supercharger/velizyisvelizy2supercharger" + } + }, + { + "type": "node", + "id": 9171832965, + "lat": 44.6137206, + "lon": 2.0295565, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9171832966, + "lat": 44.6137164, + "lon": 2.0296209, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9171832967, + "lat": 44.6137123, + "lon": 2.0296852, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9171832968, + "lat": 44.6137082, + "lon": 2.0297496, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9171924354, + "lat": 43.5124498, + "lon": 1.1895771, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9175947483, + "lat": 50.3221396, + "lon": 1.5470508, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PNGTDGD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9175950708, + "lat": 48.8163557, + "lon": 2.5324559, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "no", + "name": "e-mobility-lidl", + "operator": "Has to be", + "ref": "FR*LDL*E00000024" + } + }, + { + "type": "node", + "id": 9175950709, + "lat": 48.8163142, + "lon": 2.5324801, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "no", + "name": "e-mobility-lidl", + "operator": "Has to be", + "ref": "FR*LDL*E00000024" + } + }, + { + "type": "node", + "id": 9175984127, + "lat": 50.1100004, + "lon": 1.4552526, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "1 prise 32a 22KW ou 16A mkw", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "xfm.fr/MGK2", + "ref:EU:EVSE": "FR*S80*PAULT11NOV1918", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9176405989, + "lat": 50.27947, + "lon": 2.7365908, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9176821746, + "lat": 46.6816581, + "lon": 0.5696161, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B010", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9177322720, + "lat": 48.8068231, + "lon": 7.8315826, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "operator": "Leroy Merlin", + "socket:schuko": "4", + "wikimedia_commons": "File:Leroy Merlin Haguenau Charging.jpg" + } + }, + { + "type": "node", + "id": 9177505011, + "lat": 48.7878524, + "lon": 2.3300142, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "operator": "IUT de Cachan - Université Paris-Saclay", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9178693475, + "lat": 48.7128487, + "lon": 2.2120458, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sodetrel" + } + }, + { + "type": "node", + "id": 9178966691, + "lat": 44.0390025, + "lon": 1.3807204, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "disabled": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9178966740, + "lat": 44.0383691, + "lon": 1.3803694, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9180892588, + "lat": 47.9939961, + "lon": -4.104515, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BFAW", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9181280964, + "lat": 44.0465209, + "lon": 1.3901034, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9181280965, + "lat": 44.046546, + "lon": 1.390151, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9182819383, + "lat": 48.7999789, + "lon": 2.011948, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no", + "operator": "Driveco" + } + }, + { + "type": "node", + "id": 9182821888, + "lat": 48.7742227, + "lon": 2.1261773, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "operator": "Mairie de Buc" + } + }, + { + "type": "node", + "id": 9182823073, + "lat": 48.7809486, + "lon": 2.2008703, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9182829206, + "lat": 48.8111763, + "lon": 2.045218, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "G2Mobility", + "motorcar": "yes", + "name": "5 Place du 8 Mai 1945", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 9182829216, + "lat": 46.1506406, + "lon": 6.3215569, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9182829729, + "lat": 45.9540665, + "lon": 6.6290488, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9182843534, + "lat": 45.8581617, + "lon": 6.6198413, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9182844771, + "lat": 48.8267248, + "lon": 1.9611337, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9182845057, + "lat": 45.9528278, + "lon": 6.6283881, + "tags": { + "access": "customers", + "addr:city": "Sallanches", + "addr:country": "FR", + "addr:street": "Avenue de Genève", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Sallanches Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "2", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/sallanchessupercharger" + } + }, + { + "type": "node", + "id": 9182851407, + "lat": 48.8267524, + "lon": 2.2228712, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*49", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9182852752, + "lat": 46.1453114, + "lon": 5.6150347, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 9182858443, + "lat": 48.7810769, + "lon": 2.1969687, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9187367369, + "lat": 48.683067, + "lon": -3.5675175, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187368111, + "lat": 48.7710988, + "lon": -3.5778544, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187371956, + "lat": 48.6077318, + "lon": -3.4497986, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187380529, + "lat": 48.5572301, + "lon": -3.4468624, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9187383688, + "lat": 48.7774459, + "lon": -3.3050653, + "tags": { + "amenity": "charging_station", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187383698, + "lat": 48.7864821, + "lon": -3.2234043, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187384459, + "lat": 48.7051608, + "lon": -3.4476185, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ouest Charge" + } + }, + { + "type": "node", + "id": 9187416785, + "lat": 48.7881875, + "lon": -3.1031612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187417549, + "lat": 48.7688637, + "lon": -3.3425803, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187430048, + "lat": 48.7975707, + "lon": -3.2385629, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187435011, + "lat": 48.7512414, + "lon": -3.2798892, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9187435012, + "lat": 48.7311861, + "lon": -3.2431342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Brev'Car" + } + }, + { + "type": "node", + "id": 9188681186, + "lat": 44.0363213, + "lon": 1.3750703, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9188681187, + "lat": 44.0363985, + "lon": 1.3745017, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9188684776, + "lat": 42.7436075, + "lon": 2.9200117, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Pia - Rue Sainte-Anne", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66141*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9190542656, + "lat": 47.498989, + "lon": -0.4913215, + "tags": { + "access": "yes", + "addr:city": "Verrières-en-Anjou", + "addr:postcode": "49480", + "addr:street": "A11 - Aire des Portes d'Angers", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire des Portes d'Angers Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/portesdangerssupercharger" + } + }, + { + "type": "node", + "id": 9190572960, + "lat": 47.5020435, + "lon": 3.9844007, + "tags": { + "access": "yes", + "addr:city": "Magny", + "addr:country": "FR", + "addr:housenumber": "33", + "addr:postcode": "89200", + "addr:street": "Rue de La Bergerie", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Avallon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/avallonsupercharger" + } + }, + { + "type": "node", + "id": 9190618805, + "lat": 45.5253383, + "lon": 5.9750024, + "tags": { + "access": "customers", + "addr:city": "Saint-Jeoire-Prieuré", + "addr:postcode": "73190", + "addr:street": "A43 - Aire du Granier", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire du Granier Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedugraniersupercharger" + } + }, + { + "type": "node", + "id": 9190618806, + "lat": 45.5250656, + "lon": 5.9764434, + "tags": { + "access": "customers", + "addr:city": "Saint-Jeoire-Prieuré", + "addr:postcode": "73190", + "addr:street": "A43 - Aire de l'Abis", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire de l’Abis Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedelabissupercharger" + } + }, + { + "type": "node", + "id": 9190642590, + "lat": 45.6944891, + "lon": 0.1788574, + "tags": { + "access": "yes", + "addr:city": "Angoulême", + "addr:housenumber": "122", + "addr:postcode": "16430", + "addr:street": "Rue des Meneaux", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Angoulême Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/angoulemesupercharger" + } + }, + { + "type": "node", + "id": 9190653211, + "lat": 47.0173862, + "lon": 4.8377837, + "tags": { + "access": "yes", + "addr:city": "Beaune", + "addr:country": "FR", + "addr:housenumber": "7", + "addr:postcode": "21200", + "addr:street": "Avenue Charles de Gaulle", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Beaune Supercharger", + "name:fr": "Beaune Superchargeur", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/beaunesupercharger" + } + }, + { + "type": "node", + "id": 9190664767, + "lat": 47.6119075, + "lon": 1.3393932, + "tags": { + "access": "yes", + "addr:city": "Blois", + "addr:postcode": "41000", + "addr:street": "Rue des Onze Arpents", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Blois Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/BloisFrancesupercharger" + } + }, + { + "type": "node", + "id": 9190664777, + "lat": 47.0493689, + "lon": 2.3447789, + "tags": { + "access": "customers", + "addr:city": "Bourges", + "addr:housenumber": "3", + "addr:postcode": "18000", + "addr:street": "Rue Joseph Aristide Auxenfans", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Bourges Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/bourgessupercharger" + } + }, + { + "type": "node", + "id": 9190668922, + "lat": 48.78905, + "lon": 2.428804, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "La Borne Bleue", + "capacity": "2", + "motorcar": "yes", + "operator": "La Borne Bleue" + } + }, + { + "type": "node", + "id": 9190668924, + "lat": 48.7886449, + "lon": 2.4289609, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "La Borne Bleue", + "capacity": "4", + "motorcar": "yes", + "operator": "La Borne Bleue" + } + }, + { + "type": "node", + "id": 9190683671, + "lat": 48.9902144, + "lon": 1.6715077, + "tags": { + "access": "yes", + "addr:city": "Buchelay", + "addr:country": "FR", + "addr:housenumber": "2", + "addr:postcode": "78200", + "addr:street": "Avenue du Béarn", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Buchelay Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/buchelaysupercharger" + } + }, + { + "type": "node", + "id": 9191289766, + "lat": 50.9242262, + "lon": 1.8038144, + "tags": { + "access": "customers", + "addr:city": "Coquelles", + "addr:country": "FR", + "addr:postcode": "62231", + "addr:street": "Avenue des Longues Pièces", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Calais Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "source": "surveillance", + "website": "https://www.tesla.com/findus/location/supercharger/calaissupercharger" + } + }, + { + "type": "node", + "id": 9191291052, + "lat": 45.5608482, + "lon": 5.9496485, + "tags": { + "access": "customers", + "addr:city": "Barberaz", + "addr:country": "FR", + "addr:housenumber": "61", + "addr:postcode": "73000", + "addr:street": "Rue de la République", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "4", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Chambéry Barberaz Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "4", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "4", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chamberybarberazsupercharger" + } + }, + { + "type": "node", + "id": 9191292217, + "lat": 50.9350219, + "lon": 1.8129641, + "tags": { + "access": "yes", + "addr:city": "Coquelles", + "addr:country": "FR", + "addr:postcode": "62231", + "addr:street": "Boulevard de l'Europe", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "description": "Eurotunnel France terminal Available to Eurotunnel passengers travelling from France to the UK only. Free terminal and free access. Compatible only with the Tesla Motor cars.", + "fee": "yes", + "motorcar": "yes", + "name": "Calais - Eurotunnel Terminal Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla Supercharger", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "type_charge": "rapide - Supercharger", + "website": "https://www.tesla.com/findus/location/supercharger/calaiseurotunnelterminalsupercharger" + } + }, + { + "type": "node", + "id": 9192387785, + "lat": 47.2689445, + "lon": 1.3732008, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41232-66", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9193957749, + "lat": 46.3504926, + "lon": 6.4419097, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Peugeot Thonon", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Peugeot Thonon", + "ref:EU:EVSE": "FR*G44*PBYMYCAR74200*1", + "socket:chademo": "1", + "socket:type2": "3", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9195725955, + "lat": 48.5474005, + "lon": 1.5838054, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*PIA1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9196042673, + "lat": 49.1543982, + "lon": 2.5500414, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "Mouv'Oise Charging Station" + } + }, + { + "type": "node", + "id": 9196065524, + "lat": 49.0222546, + "lon": 2.599863, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "2", + "fee": "yes", + "level": "0", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 9197012804, + "lat": 44.8601862, + "lon": 1.3638858, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "mobive" + } + }, + { + "type": "node", + "id": 9197148751, + "lat": 50.7408154, + "lon": 2.2697728, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62525*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9204592666, + "lat": 46.1760587, + "lon": 3.8757415, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9204911903, + "lat": 48.7082555, + "lon": 2.4147405, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9205692157, + "lat": 45.8526371, + "lon": 4.8725475, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "IZIVIA Grand Lyon", + "opening_hours": "24/7", + "operator": "IZIVIA Grand Lyon", + "ref": "CAF01A", + "socket:type2": "2", + "socket:type2:output": "7kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 9205692158, + "lat": 45.8526002, + "lon": 4.872576, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "IZIVIA Grand Lyon", + "opening_hours": "24/7", + "operator": "IZIVIA Grand Lyon", + "ref": "CAF01B", + "socket:type2": "2", + "socket:type2:output": "7kW", + "socket:typee": "2", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 9206298481, + "lat": 46.2431294, + "lon": 0.2896652, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B130", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9206375691, + "lat": 49.0412702, + "lon": 3.9519187, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "note": "50 kW connecteur ccs chademo type 2 fabricant ies", + "operator": "Freshmile", + "payment:credit_cards": "yes", + "source": "https://abonne.lunion.fr/id306995/article/2021-10-26/de-nouvelles-bornes-de-recharge-pour-les-vehicules-electriques-epernay" + } + }, + { + "type": "node", + "id": 9207841492, + "lat": 45.5438301, + "lon": 4.2649792, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://www.e-totem.fr", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 9208060040, + "lat": 48.9810686, + "lon": 1.9820277, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "ref:EU:EVSE": "FRY01E78642001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9208213301, + "lat": 48.2191913, + "lon": -4.1654055, + "tags": { + "amenity": "charging_station", + "name": "Station de recharge SDEF", + "website": "https://www.sdef.fr/" + } + }, + { + "type": "node", + "id": 9210324777, + "lat": 44.8118934, + "lon": -0.5911223, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "operator": "Bluecub" + } + }, + { + "type": "node", + "id": 9211713558, + "lat": 43.9238299, + "lon": 1.2640272, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9211838740, + "lat": 49.621874, + "lon": 0.7513507, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9211838741, + "lat": 49.6218792, + "lon": 0.7514392, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9211914389, + "lat": 43.4509387, + "lon": 3.6153113, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "ref:EU:EVSE": "FR*S34*P34143001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9212166793, + "lat": 46.2704571, + "lon": 0.3031138, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "operator:wikidata": "Q3491321", + "operator:wikipedia": "fr:Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B082", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9212480570, + "lat": 48.7895982, + "lon": 2.4651935, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9213011560, + "lat": 48.5586432, + "lon": 5.2701974, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Fuclem-55" + } + }, + { + "type": "node", + "id": 9214235898, + "lat": 47.0740622, + "lon": -1.4147043, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "Mennekes", + "model": "Amtron Premium E", + "model:ref": "1355601", + "motorcar": "yes", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 9215111510, + "lat": 49.0452975, + "lon": 2.3224341, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Bouffémont - Rue Louise Michel", + "opening_hours": "24/7", + "operator": "Sigeif", + "operator:wikidata": "Q3508360", + "operator:wikipedia": "fr:Syndicat intercommunal pour le gaz et l'électricité en Île-de-France", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9215133555, + "lat": 49.0411982, + "lon": 2.3109992, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "name": "Bouffémont - Parking du Gymnase Jean-Baptiste Clément", + "opening_hours": "24/7", + "operator": "Sigeif", + "operator:wikidata": "Q3508360", + "operator:wikipedia": "fr:Syndicat intercommunal pour le gaz et l'électricité en Île-de-France" + } + }, + { + "type": "node", + "id": 9215910877, + "lat": 43.2202035, + "lon": 3.2340144, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Vendres - Avenue du Port", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34329001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9216118604, + "lat": 45.7234325, + "lon": 3.1894255, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "source": "survey", + "start_date": "2021", + "survey:date": "2021-10-24", + "wikimedia_commons": "File:Borne de charge véhicules électriques parking gare du Cendre-Orcet 2021-08-15.JPG" + } + }, + { + "type": "node", + "id": 9216146628, + "lat": 43.2039331, + "lon": 6.6518992, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "name": "EVlink" + } + }, + { + "type": "node", + "id": 9216601071, + "lat": 48.8393327, + "lon": 2.3510143, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0222", + "socket:type3c": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9216678518, + "lat": 45.9481424, + "lon": 4.9852468, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9217054013, + "lat": 46.1543885, + "lon": 3.4314284, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PCREUZIERLEV", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "survey", + "start_date": "2016", + "survey:date": "2021-10-23" + } + }, + { + "type": "node", + "id": 9219059817, + "lat": 43.4575252, + "lon": 4.4270808, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "survey:date": "2021-11-02" + } + }, + { + "type": "node", + "id": 9220982086, + "lat": 43.1821705, + "lon": 3.0159738, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9221701732, + "lat": 46.7750827, + "lon": 6.3701713, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701733, + "lat": 46.7751856, + "lon": 6.3703698, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701734, + "lat": 46.7747337, + "lon": 6.3703282, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701735, + "lat": 46.774528, + "lon": 6.3699004, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701736, + "lat": 46.7742782, + "lon": 6.3695236, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701737, + "lat": 46.7744573, + "lon": 6.3693586, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701738, + "lat": 46.7746667, + "lon": 6.3694189, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701739, + "lat": 46.774336, + "lon": 6.3690247, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701740, + "lat": 46.7742194, + "lon": 6.368802, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701741, + "lat": 46.7741339, + "lon": 6.368562, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701742, + "lat": 46.7743526, + "lon": 6.368389, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701743, + "lat": 46.7742065, + "lon": 6.3680993, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701744, + "lat": 46.7740586, + "lon": 6.3683809, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701745, + "lat": 46.7739346, + "lon": 6.3680913, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9221701746, + "lat": 46.7739438, + "lon": 6.3677265, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9222378707, + "lat": 49.0185919, + "lon": 2.2458743, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9223107694, + "lat": 46.4406841, + "lon": 3.3640884, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE03 - Allier", + "ref:EU:EVSE": "FR*EBN*PBESSAY", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9223334191, + "lat": 49.2604457, + "lon": 2.4562908, + "tags": { + "amenity": "charging_station", + "operator": "Creil Montataire Développement (CMD)" + } + }, + { + "type": "node", + "id": 9223547832, + "lat": 48.9071171, + "lon": 2.2694284, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "motorcar": "yes", + "network": "La Borne Bleue", + "operator": "La borne bleue" + } + }, + { + "type": "node", + "id": 9223729778, + "lat": 49.1821433, + "lon": 0.3124887, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "note": "Prise situé sur le parking privée du parc CERZA", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9224738139, + "lat": 48.9316115, + "lon": 2.2602949, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 9225072993, + "lat": 46.9025272, + "lon": 6.3311706, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "1", + "inscription": "Ev·2S7P04 Evp2Pe704", + "model": "Evlink", + "opening_hours": "24/7", + "operator": "Schneider Electric", + "operator:wikidata": "Q49053", + "operator:wikipedia": "fr:Schneider Electric", + "parking:fee": "no", + "ref": "Evp2pe704", + "socket:type2": "1", + "socket:type2:output": "7", + "voltage": "220-240" + } + }, + { + "type": "node", + "id": 9225477452, + "lat": 48.8823406, + "lon": 2.2919902, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0171", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9227014156, + "lat": 48.8371653, + "lon": 2.1526598, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*83", + "socket:type2": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9227033081, + "lat": 42.8468257, + "lon": 1.5998242, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE09", + "ref:EU:EVSE": "FR*S09*P09306*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9227568222, + "lat": 44.8755423, + "lon": 1.2235017, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "operator": "la Borne / énergies E.Leclerc" + } + }, + { + "type": "node", + "id": 9228521116, + "lat": 43.6186564, + "lon": 5.0497475, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9229733744, + "lat": 48.854452, + "lon": 2.1314047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9231086580, + "lat": 42.6176399, + "lon": 3.0041009, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9233046951, + "lat": 45.5272659, + "lon": 4.8766714, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9233466569, + "lat": 47.0897652, + "lon": 3.1967305, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9233542917, + "lat": 48.8649758, + "lon": 2.3605618, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX03*04", + "socket:type2": "6", + "socket:typee": "6", + "source": "opendata.paris.fr:Direction de la Voirie et des Déplacements - Ville de Paris - 2021-08", + "survey:date": "2021-11-07" + } + }, + { + "type": "node", + "id": 9233551645, + "lat": 48.8624357, + "lon": 2.3646794, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0015", + "socket:type3c": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020", + "survey:date": "2021-11-07" + } + }, + { + "type": "node", + "id": 9236036993, + "lat": 49.7050175, + "lon": 0.2090117, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9236353220, + "lat": 47.2802307, + "lon": 0.2260257, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9238914879, + "lat": 49.6142895, + "lon": 0.5471179, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "name": "Ionity", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY" + } + }, + { + "type": "node", + "id": 9238914880, + "lat": 49.6143768, + "lon": 0.5456971, + "tags": { + "amenity": "charging_station", + "name": "Ionity", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY" + } + }, + { + "type": "node", + "id": 9241239770, + "lat": 43.4996287, + "lon": 3.7124621, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34113002", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9241260607, + "lat": 43.9460208, + "lon": 2.1375437, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Albi - Chemin de Las Bories", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81004*004", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9241523503, + "lat": 43.9478606, + "lon": 2.2110519, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Juéry - Allée de la Trencade", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81257*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9241523722, + "lat": 43.9493885, + "lon": 2.2112182, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Juéry - Place de la Mairie", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81257*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9242684063, + "lat": 45.0204011, + "lon": 5.4425191, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "sded" + } + }, + { + "type": "node", + "id": 9243262432, + "lat": 45.5140913, + "lon": 4.8646921, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9243262433, + "lat": 45.5132386, + "lon": 4.8646214, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EasyCharge Services" + } + }, + { + "type": "node", + "id": 9244111285, + "lat": 43.9340467, + "lon": 2.1728949, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9244111286, + "lat": 43.9340245, + "lon": 2.1729026, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81004*009", + "socket:chademo": "3", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9247753337, + "lat": 43.9488562, + "lon": 4.9339114, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "network": "VILLE DE JONQUERETTE", + "operator": "ELECTRIC 55 CHARGING", + "owner": "ELECTRIC 55 CHARGING", + "ref:EU:EVSE": "FR*55C*P84450*JQT*FELIBRIGE", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9248436145, + "lat": 47.6037402, + "lon": 7.5093513, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9250835561, + "lat": 49.2782889, + "lon": 4.0577691, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "name": "Floralies's Garden", + "operator": "Floralies's Garden" + } + }, + { + "type": "node", + "id": 9251032997, + "lat": 47.6637547, + "lon": 1.9293162, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fixme": "Inscription Pulse Lafond, mais non preśente sur la carte de Vinci autoroute. Abandonnée ?", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9251447733, + "lat": 42.6680025, + "lon": 2.8866859, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9252717064, + "lat": 48.8261416, + "lon": 2.2001825, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9252915925, + "lat": 43.6030784, + "lon": 1.3643417, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9252915926, + "lat": 43.6030366, + "lon": 1.3643207, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9252915927, + "lat": 43.6029973, + "lon": 1.3642997, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9253286159, + "lat": 48.8465229, + "lon": 2.2165715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "IZIVIA" + } + }, + { + "type": "node", + "id": 9253695013, + "lat": 48.8609358, + "lon": 2.1234355, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9254529352, + "lat": 47.372136, + "lon": -1.972218, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEGO", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA) | FR*S44", + "owner": "Syndicat Départemental d'Énergie de Loire-Atlantique (SYDELA)", + "ref:EU:EVSE": "FR*S44*P44033A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9254730510, + "lat": 43.5813584, + "lon": 1.3878121, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Toulouse - Place des Pradettes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Toulouse Métropole", + "ref:EU:EVSE": "FR*M31*P31555*011", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9256648369, + "lat": 48.5535582, + "lon": 4.7671081, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "fee": "no", + "name": "Borne recharge batterie vélo" + } + }, + { + "type": "node", + "id": 9256983505, + "lat": 44.6296124, + "lon": -0.9855256, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9257887274, + "lat": 44.5387346, + "lon": 6.4547153, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "designated", + "fee": "no", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 9260228987, + "lat": 46.9019048, + "lon": 6.3456646, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "ref:EU:EVSE": "FR*S25*P02546253", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9260606393, + "lat": 46.9239724, + "lon": 6.3395953, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9260606394, + "lat": 46.9238999, + "lon": 6.3396754, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9260606395, + "lat": 46.9239361, + "lon": 6.3396354, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9260629605, + "lat": 50.3361122, + "lon": 3.5782984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59557*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9261173305, + "lat": 47.0172702, + "lon": 0.3234382, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9264474784, + "lat": 44.3024351, + "lon": 2.5564383, + "tags": { + "amenity": "charging_station", + "capacity": "22kW", + "source": "New Motion" + } + }, + { + "type": "node", + "id": 9265185262, + "lat": 43.9198328, + "lon": 2.1382676, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Albi - Avenue François Verdier", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81004*006", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9266962950, + "lat": 50.1724008, + "lon": 3.8730758, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59542*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9267707262, + "lat": 43.6849147, + "lon": 4.1489367, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "charging_station:output": "11", + "fee": "yes", + "motorcar": "yes", + "name": "Kyriad Lunel 4", + "network": "Kyriad - Lunel", + "operator": "Zephyre", + "owner": "Kyriad - Lunel", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9267769975, + "lat": 43.6727733, + "lon": 4.148515, + "tags": { + "amenity": "charging_station", + "name": "Renault Charging Station", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault", + "website": "https://www.renaultgroup.com" + } + }, + { + "type": "node", + "id": 9269817824, + "lat": 48.8217682, + "lon": 2.1815767, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Ville d'Avray", + "ref:EU:EVSE": "FR*V12*P92077*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9270012532, + "lat": 45.8424276, + "lon": 4.8345737, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Intermarché - Rochetaillée", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9270029886, + "lat": 50.3965856, + "lon": 3.6693609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59484*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9270585313, + "lat": 45.5257789, + "lon": 4.8752845, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9272789792, + "lat": 50.9283349, + "lon": 1.8118302, + "tags": { + "access": "yes", + "addr:city": "Coquelles", + "addr:postcode": "62231", + "addr:street": "Boulevard de l'Europe", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "2", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Eurotunnel Flexiplus Lounge Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "2", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "2", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/eurotunnelloungesupercharger" + } + }, + { + "type": "node", + "id": 9272850900, + "lat": 47.2717159, + "lon": 5.0434213, + "tags": { + "access": "yes", + "addr:city": "Longvic", + "addr:country": "FR", + "addr:housenumber": "7", + "addr:postcode": "21600", + "addr:street": "Rue de Beauregard", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Dijon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/DijonFrancesupercharger" + } + }, + { + "type": "node", + "id": 9272863441, + "lat": 45.7859519, + "lon": 3.1414971, + "tags": { + "access": "customers", + "addr:city": "Clermont-Ferrand", + "addr:country": "FR", + "addr:housenumber": "32-34", + "addr:postcode": "63100", + "addr:street": "Rue Georges Besse", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Clermont-Ferrand Supercharger", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla Supercharger", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/clermontferrandsupercharger" + } + }, + { + "type": "node", + "id": 9272889227, + "lat": 45.518722, + "lon": 6.4825492, + "tags": { + "access": "customers", + "addr:city": "La Léchère-les-Bains", + "addr:country": "FR", + "addr:postcode": "73261", + "addr:street": "Parc Thermal", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "La Léchère-les-Bains Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/lalecherelesbainssupercharger" + } + }, + { + "type": "node", + "id": 9272903422, + "lat": 44.2027894, + "lon": -0.9267461, + "tags": { + "access": "yes", + "addr:city": "Labouheyre", + "addr:country": "FR", + "addr:housenumber": "67", + "addr:postcode": "40210", + "addr:street": "Allée des Genêts", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Labouheyre Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/labouheyresupercharger" + } + }, + { + "type": "node", + "id": 9272943185, + "lat": 46.3784626, + "lon": 2.5865829, + "tags": { + "access": "yes", + "addr:city": "Montluçon", + "addr:country": "FR", + "addr:postcode": "03410", + "addr:street": "Aire des Vérités - Technopôle de la Loue", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Montluçon Supercharger", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/montluconfrsupercharger" + } + }, + { + "type": "node", + "id": 9272958285, + "lat": 47.782009, + "lon": 7.3882111, + "tags": { + "access": "customers", + "addr:city": "Sausheim", + "addr:country": "FR", + "addr:housenumber": "26", + "addr:postcode": "68390", + "addr:street": "Route Départementale 201", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Mulhouse Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/mulhousesupercharger" + } + }, + { + "type": "node", + "id": 9272972340, + "lat": 44.6763159, + "lon": 4.795838, + "tags": { + "access": "yes", + "addr:city": "Saulce sur Rhône", + "addr:country": "FR", + "addr:street": "Route Nationale 7", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Montélimar Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "16", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/montelimarfrsupercharger" + } + }, + { + "type": "node", + "id": 9272976778, + "lat": 46.2982318, + "lon": -0.3753376, + "tags": { + "access": "yes", + "addr:city": "Vouillé", + "addr:country": "FR", + "addr:postcode": "79230", + "addr:street": "Aire du Poitou-Charentes", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Niort Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/niortsupercharger" + } + }, + { + "type": "node", + "id": 9272996386, + "lat": 44.112136, + "lon": 4.8517916, + "tags": { + "access": "customers", + "addr:city": "Orange", + "addr:country": "FR", + "addr:postcode": "84100", + "addr:street": "Rue Cinsault", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Orange Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/orangesupercharger" + } + }, + { + "type": "node", + "id": 9273116126, + "lat": 43.9382262, + "lon": 2.0856921, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Castelnau-de-Levis - Rue Sicard Alaman", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81063*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9274391313, + "lat": 45.1523632, + "lon": 0.7899937, + "tags": { + "access": "yes", + "addr:city": "Perigueux", + "addr:country": "FR", + "addr:postcode": "24330", + "addr:street": "Rue Jules Supervielle", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Perigueux Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/perigueuxfrsupercharger" + } + }, + { + "type": "node", + "id": 9274404082, + "lat": 49.2526559, + "lon": 3.9757445, + "tags": { + "access": "customers", + "addr:city": "Tinqueux", + "addr:country": "FR", + "addr:postcode": "51430", + "addr:street": "Route de Soissons", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Reims-Tinqueux Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/reimstinqueuxsupercharger" + } + }, + { + "type": "node", + "id": 9274423742, + "lat": 45.3271297, + "lon": 4.8053317, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "email": "charging-france@tesla.com", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "phone": "+33 9 70 73 08 50", + "ref:EU:EVSE": "FR*TSC*P1772", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "source": "https://www.data.gouv.fr/fr/datasets/fichier-consolide-des-bornes-de-recharge-pour-vehicules-electriques/", + "source:date": "2022-05-11", + "website": "https://www.tesla.com/findus/location/supercharger/Valencefrsupercharger" + } + }, + { + "type": "node", + "id": 9274490731, + "lat": 48.7547759, + "lon": 2.3730375, + "tags": { + "access": "customers", + "addr:city": "Thiais", + "addr:postcode": "94320", + "addr:street": "Centre Commercial Régional Belle Epine Rue du Luxembourg", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Thiais Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/thiaissupercharger" + } + }, + { + "type": "node", + "id": 9274518936, + "lat": 44.9189285, + "lon": 4.8780886, + "tags": { + "access": "customers", + "addr:city": "Valence", + "addr:country": "FR", + "addr:housenumber": "217", + "addr:postcode": "26000", + "addr:street": "Avenue de Provence", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Valence Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "8", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/valencesupercharger" + } + }, + { + "type": "node", + "id": 9274536069, + "lat": 47.2458547, + "lon": 2.0696368, + "tags": { + "access": "yes", + "addr:city": "Vierzon", + "addr:country": "FR", + "addr:postcode": "18100", + "addr:street": "Parc Technologique de Sologne - Le Batonnet", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Vierzon Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/Vierzonfrsupercharger" + } + }, + { + "type": "node", + "id": 9275621255, + "lat": 48.872078, + "lon": 2.0986401, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9275708037, + "lat": 46.5496903, + "lon": 0.342091, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ALTERBASE86", + "opening_hours": "24/7", + "operator": "Sorégies", + "owner": "Sorégies", + "ref:EU:EVSE": "FR*S86*PSORE*B120", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9276332487, + "lat": 43.9217743, + "lon": 2.1497911, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Albi - Allée du Lude", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81004*005", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9277746595, + "lat": 43.3280719, + "lon": -1.0360081, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge électrique" + } + }, + { + "type": "node", + "id": 9277793369, + "lat": 47.0002133, + "lon": 6.2261001, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9277960089, + "lat": 48.555232, + "lon": -2.5451309, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "LIDL" + } + }, + { + "type": "node", + "id": 9277960090, + "lat": 48.5551868, + "lon": -2.5451052, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "LIDL" + } + }, + { + "type": "node", + "id": 9279739699, + "lat": 47.6727437, + "lon": 6.5098581, + "tags": { + "amenity": "charging_station", + "source": "BDOrtho IGN;BD Carthage" + } + }, + { + "type": "node", + "id": 9280472465, + "lat": 46.9807663, + "lon": 6.1855081, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9283651962, + "lat": 48.3461756, + "lon": 2.6395011, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "maxstay": "2 hours @ (09:00-19:00)", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "ref": "MAT-004589", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "socket:typee": "2", + "socket:typee:current": "16", + "socket:typee:output": "3 kW", + "socket:typee:voltage": "220" + } + }, + { + "type": "node", + "id": 9283820122, + "lat": 47.7503067, + "lon": 7.3066062, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9284050891, + "lat": 48.7425251, + "lon": 0.9295737, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9285220843, + "lat": 50.2601102, + "lon": 4.0266103, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59142*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9285309542, + "lat": 50.2838261, + "lon": 4.0383606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59495*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9287200169, + "lat": 48.7375637, + "lon": 1.4149772, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*GEM1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9287979039, + "lat": 43.6713093, + "lon": 4.1297344, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34403002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2021-11", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 9288691890, + "lat": 43.9311614, + "lon": 3.7083831, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34111*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9289748184, + "lat": 48.7400641, + "lon": 0.9296299, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9289753984, + "lat": 48.7404507, + "lon": 0.929001, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9289908235, + "lat": 43.9243723, + "lon": 3.7213017, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34128*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9290013637, + "lat": 43.9266654, + "lon": 3.7212025, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34128*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9291196551, + "lat": 47.1488276, + "lon": 6.3276678, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "SREM2", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault" + } + }, + { + "type": "node", + "id": 9293389171, + "lat": 48.4206803, + "lon": 7.6480715, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9294685269, + "lat": 42.4489999, + "lon": 9.5056925, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "yes", + "indoor": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "ref:freshmile": "EZBE1", + "socket:type2": "1", + "socket:typee": "1", + "website": "https://charge.freshmile.com/location/CUECDGTUQW/EZBE1" + } + }, + { + "type": "node", + "id": 9294685270, + "lat": 42.4490012, + "lon": 9.5057014, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "1", + "fee": "yes", + "indoor": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "ref:freshmile": "EZBE2", + "socket:type2": "1", + "socket:typee": "1", + "website": "https://charge.freshmile.com/location/CUECDGTUQW/EZBE2" + } + }, + { + "type": "node", + "id": 9295536499, + "lat": 48.5097373, + "lon": 0.4896754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61130A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9295948996, + "lat": 48.9601209, + "lon": 2.9498806, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Effia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9296285874, + "lat": 47.4253738, + "lon": 0.699066, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "description": "1 borne DBT chademo + type2" + } + }, + { + "type": "node", + "id": 9296291230, + "lat": 47.4258452, + "lon": 0.699614, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "2 bornes EVlink Wallbox" + } + }, + { + "type": "node", + "id": 9296581934, + "lat": 47.4191186, + "lon": 0.7157039, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9297621345, + "lat": 46.1355899, + "lon": 3.4328349, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Ingeteam", + "motorcar": "yes", + "source": "BDOrtho IGN 2022", + "start_date": "2021-11", + "survey:date": "2022-01-08" + } + }, + { + "type": "node", + "id": 9299887043, + "lat": 45.8406724, + "lon": 4.8346086, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Izivia Grand Lyon", + "opening_hours": "24/7", + "ref": "ROS01B", + "socket:type2": "2", + "socket:type2:power": "7 kW" + } + }, + { + "type": "node", + "id": 9299887044, + "lat": 45.8406555, + "lon": 4.8346103, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Izivia Grand Lyon", + "opening_hours": "24/7", + "ref": "ROS01A", + "socket:type2": "2", + "socket:type2:power": "7 kW" + } + }, + { + "type": "node", + "id": 9300910760, + "lat": 48.9747126, + "lon": 2.0497019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "Place de la Gare", + "operator": "SEY 78", + "ref:EU:EVSE": "FR*Y01*P78015*002", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9303176302, + "lat": 45.8480268, + "lon": 4.8315731, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9303176303, + "lat": 45.8480876, + "lon": 4.8315698, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9308048981, + "lat": 44.103017, + "lon": 4.7583694, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9308805194, + "lat": 48.9963717, + "lon": 2.0979027, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9310697486, + "lat": 48.1954669, + "lon": 3.2641589, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "IRVE SDEY", + "opening_hours": "24/7", + "operator": "SDEY", + "owner": "SDEY", + "ref:EU:EVSE": "FR*S89*P89287*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9311510071, + "lat": 48.8912551, + "lon": 2.3725938, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "clem" + } + }, + { + "type": "node", + "id": 9311510074, + "lat": 48.8891027, + "lon": 2.3717528, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9019*06", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9312458264, + "lat": 42.4340891, + "lon": 1.9450035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Bourg-Madame - Place de la Mairie", + "name:ca": "La Guingueta d'Ix - Plaça de la Vila", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66025*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9312640591, + "lat": 44.8706102, + "lon": 3.2533023, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY La Garde", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9316016480, + "lat": 42.8936235, + "lon": 2.1951339, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "email": "nicolas.mounie@outlook.fr", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Régie Municipale d'Energie de Quillan", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*BE2*P11304001", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9316016481, + "lat": 42.8935271, + "lon": 2.1949397, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "email": "nicolas.mounie@outlook.fr", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Régie Municipale d'Energie de Quillan", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*BE2*P11304001", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9318847456, + "lat": 47.6838807, + "lon": 6.5186349, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9318847457, + "lat": 47.6839087, + "lon": 6.5185947, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9318847458, + "lat": 47.683929, + "lon": 6.5185605, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9321108170, + "lat": 50.304133, + "lon": 2.7638305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté Urbaine d'Arras", + "ref:EU:EVSE": "FR*H06*P62744*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9321298006, + "lat": 48.3687483, + "lon": -4.3718308, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no" + } + }, + { + "type": "node", + "id": 9323528650, + "lat": 48.7879048, + "lon": 2.227699, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "description": "Depuis avril 2018, en collaboration avec Enedis et Bouygues ES, GPSO teste des bornes de recharge pour véhicules électriques à Meudon.", + "fee": "yes", + "motorcar": "yes", + "name": "Alizé – Saint-Exupéry", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*133", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://alizecharge.com/fr/service-de-recharge-alize/", + "website:en": "https://alizecharge.com/en/aliz-electric-recharge-service/" + } + }, + { + "type": "node", + "id": 9324674097, + "lat": 46.9053793, + "lon": 6.3342605, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9325085670, + "lat": 44.8132338, + "lon": -0.744626, + "tags": { + "amenity": "charging_station", + "covered": "no" + } + }, + { + "type": "node", + "id": 9326801247, + "lat": 45.505267, + "lon": 4.911289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref:EU:EVSE": "FR*EBN*PMAMVPH", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9330663655, + "lat": 45.8524038, + "lon": 4.3578242, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9334121079, + "lat": 43.7862732, + "lon": 4.8312617, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Simone", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "4" + } + }, + { + "type": "node", + "id": 9338136417, + "lat": 48.8069959, + "lon": 7.8307092, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9338136418, + "lat": 48.8072212, + "lon": 7.8309754, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9338167891, + "lat": 47.5209495, + "lon": 5.1220143, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9338190440, + "lat": 48.8149596, + "lon": 7.7872514, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9338614038, + "lat": 48.3786018, + "lon": 0.6817403, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61309A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9340375190, + "lat": 47.4105902, + "lon": 0.6087181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "2 bornes de recharge Modulo" + } + }, + { + "type": "node", + "id": 9341162487, + "lat": 48.8080335, + "lon": 2.2213112, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9341236704, + "lat": 48.7980545, + "lon": 7.7778576, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9341256494, + "lat": 43.7214468, + "lon": 6.9773886, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "description": "Station de recharge VAE + gonflage + outillage", + "operator": "bike energy" + } + }, + { + "type": "node", + "id": 9342137157, + "lat": 43.8242328, + "lon": 4.3191934, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9344203731, + "lat": 47.2184942, + "lon": -0.7274614, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9346149802, + "lat": 45.7912884, + "lon": 4.4666365, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9348221416, + "lat": 45.8393371, + "lon": 6.2156697, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 9348385138, + "lat": 43.9582328, + "lon": 2.1541518, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9348385216, + "lat": 43.9380807, + "lon": 2.1424312, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9348389666, + "lat": 43.9276089, + "lon": 2.1396476, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9348738911, + "lat": 43.9018088, + "lon": 4.7539432, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9349314469, + "lat": 48.772255, + "lon": 7.2421454, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "source": "survey;gps" + } + }, + { + "type": "node", + "id": 9350358709, + "lat": 43.9196259, + "lon": 2.183407, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9350358710, + "lat": 43.9196307, + "lon": 2.1832239, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9350358711, + "lat": 43.9197843, + "lon": 2.1833664, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9350358712, + "lat": 43.9202331, + "lon": 2.1829741, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9350961444, + "lat": 43.9275525, + "lon": 2.1396701, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9352364016, + "lat": 45.6966279, + "lon": 4.8845872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9352401017, + "lat": 45.6966027, + "lon": 4.8844196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Izivia", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia" + } + }, + { + "type": "node", + "id": 9352538030, + "lat": 48.8051245, + "lon": 2.4419833, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "capacity": "2", + "operator": "SOGEFI" + } + }, + { + "type": "node", + "id": 9353371574, + "lat": 44.3685275, + "lon": 2.5818676, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9353504897, + "lat": 48.9924073, + "lon": 1.8452253, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "SEY 78", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9353525377, + "lat": 44.3608171, + "lon": 2.5745478, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9353525383, + "lat": 44.3624552, + "lon": 2.5727313, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9353586926, + "lat": 47.1635093, + "lon": 0.2522369, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9353613707, + "lat": 47.1695002, + "lon": 0.2393737, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9354669826, + "lat": 47.2162315, + "lon": 0.1646011, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9354669860, + "lat": 47.2113934, + "lon": 0.1711558, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9354669863, + "lat": 47.2118439, + "lon": 0.1704879, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9356112269, + "lat": 47.8743583, + "lon": 2.2270227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9356136950, + "lat": 47.8647177, + "lon": 2.2218373, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9356192267, + "lat": 47.1209127, + "lon": 2.3673468, + "tags": { + "amenity": "charging_station", + "capacity": "10" + } + }, + { + "type": "node", + "id": 9356609466, + "lat": 48.7028591, + "lon": 6.1247277, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:nfc": "yes", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "parking:fee": "no", + "socket:schuko": "1", + "socket:type3": "1", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 9356801620, + "lat": 46.9062296, + "lon": 6.3508856, + "tags": { + "access": "private", + "amenity": "charging_station", + "covered": "yes" + } + }, + { + "type": "node", + "id": 9360503995, + "lat": 47.9585107, + "lon": -3.8290528, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29XTRA", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9361090594, + "lat": 48.9301093, + "lon": 2.4951558, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9362516008, + "lat": 43.405372, + "lon": 5.0451274, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9362717004, + "lat": 44.127826, + "lon": 1.2260594, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Carrefour Contact", + "parking:fee": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "source": "survey", + "survey:date": "2021-12-23", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9363552059, + "lat": 48.2693216, + "lon": 4.0734809, + "tags": { + "amenity": "charging_station", + "amperage": "16; 32", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 388 688 458", + "contact:website": "chargelec.sde-aube.fr", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Energie de l'Aube" + } + }, + { + "type": "node", + "id": 9364109939, + "lat": 47.8780533, + "lon": 1.955084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9364148072, + "lat": 46.1435681, + "lon": 4.767967, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "8", + "fee": "yes", + "image": "https://pbs.twimg.com/media/FHT8hx3XoAcDvA1?format=jpg", + "motorcar": "yes", + "name": "Fastned Aire de Dracé", + "note": "Connecteurs CCS 8 x 150 kW, CHAdeMO 4 x 50 kW, AC 2 x 22 kW", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "payment:app": "yes", + "payment:contactless": "yes", + "ref": "50602", + "socket:chademo": "4", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "150 kW", + "source": "https://fastnedcharging.com/nl/locaties;https://twitter.com/VoyageAPRR/status/1474080636470190083", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9364170189, + "lat": 46.6931765, + "lon": 4.8445684, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "8", + "fee": "yes", + "image": "https://pbs.twimg.com/media/FHT8hw0WQBEWSVS?format=jpg", + "motorcar": "yes", + "name": "Fastned Aire de Saint Ambreuil", + "note": "Connecteurs CCS 8 x 300 kW, CHAdeMO 4 x 50 kW, AC 2 x 22 kW", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50603", + "socket:chademo": "4", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties;https://twitter.com/VoyageAPRR/status/1474080636470190083", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9364326700, + "lat": 45.5253257, + "lon": 5.975273, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:none": "yes", + "capacity": "2", + "description": "EVBox Troniq 50", + "fee": "yes", + "network": "EG Group" + } + }, + { + "type": "node", + "id": 9364329249, + "lat": 45.2770059, + "lon": 5.6229759, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "name": "Ionity Île Rose", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9365689691, + "lat": 43.9548004, + "lon": 2.8509748, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9366588864, + "lat": 45.0527626, + "lon": 6.0308203, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref:EU:EVSE": "FR*EBN*PVS6SOGHFTE", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9366644585, + "lat": 48.8009793, + "lon": 2.6075591, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fixme": "please check it abd improve this \"element\"" + } + }, + { + "type": "node", + "id": 9368642269, + "lat": 44.5092927, + "lon": 0.1409182, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9369536518, + "lat": 47.1870114, + "lon": 5.8289064, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl", + "payment:debit_cards": "yes" + } + }, + { + "type": "node", + "id": 9370148988, + "lat": 46.6691092, + "lon": 0.4051891, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Alterbase Sorégies" + } + }, + { + "type": "node", + "id": 9370148989, + "lat": 46.6662703, + "lon": 0.3704018, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "description": "CHAdeMO · 50 kW\nType 2 · 23.9 kW" + } + }, + { + "type": "node", + "id": 9370659591, + "lat": 48.8224228, + "lon": 2.3730428, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9013*01", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 9370800621, + "lat": 48.877269, + "lon": 2.3679931, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9370810218, + "lat": 48.8816957, + "lon": 2.3206125, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX08*07", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9370953265, + "lat": 43.0810018, + "lon": 5.806713, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "eborn", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9371220900, + "lat": 50.5137743, + "lon": 2.6833658, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9375868279, + "lat": 49.5949901, + "lon": 3.3813466, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "DIRVE 02 Aisne", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S02*P58C7C8DAA8451", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9376345383, + "lat": 48.6213777, + "lon": 7.7554814, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "level": "0", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "note": "Borne et places pour 2 véhicules électriques (accessible 24h/24h).\nAuthentification requise.", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9376786776, + "lat": 45.0612733, + "lon": 4.3041013, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE43 - Haute-Loire", + "ref:EU:EVSE": "FR*EBN*PMYQBUNOQVJ", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9382611878, + "lat": 49.570115, + "lon": 3.6342081, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9382738844, + "lat": 48.1136477, + "lon": 1.3926774, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28256*1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:type3": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9383961128, + "lat": 47.3984236, + "lon": -0.5307199, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9384352658, + "lat": 45.3831442, + "lon": 5.5791037, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Etotem" + } + }, + { + "type": "node", + "id": 9385898668, + "lat": 48.8172618, + "lon": 2.3279415, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Metropolis", + "opening_hours": "24/7", + "operator": "Métropole du Grand Paris", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref": "1", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "website": "https://www.metropolis-recharge.fr/" + } + }, + { + "type": "node", + "id": 9385898669, + "lat": 48.8172706, + "lon": 2.3278771, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Metropolis", + "opening_hours": "24/7", + "operator": "Métropole du Grand Paris", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref": "2", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "website": "https://www.metropolis-recharge.fr/" + } + }, + { + "type": "node", + "id": 9385898670, + "lat": 48.8172759, + "lon": 2.3278114, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:debit_card": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Metropolis", + "opening_hours": "24/7", + "operator": "Métropole du Grand Paris", + "parking:fee": "Mo-Sa 09:00-19:00", + "payment:contactless": "yes", + "ref": "3", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "website": "https://www.metropolis-recharge.fr/" + } + }, + { + "type": "node", + "id": 9386819600, + "lat": 50.5119314, + "lon": 2.6212923, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9387695859, + "lat": 46.4480714, + "lon": 4.1138251, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9388527092, + "lat": 47.2860743, + "lon": 0.9856519, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "2 places, puissances dispo : Type 2 22kW, Type 2 43kW avec câble, Combo type 2 50kW avec câble, Chademo 50kW, Type F 4kW d'après l'appli Freshmiles", + "operator": "Virta.global", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9388905344, + "lat": 43.2898847, + "lon": 5.3560263, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13207*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9391923288, + "lat": 49.2127221, + "lon": -1.5263773, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "not:operator:wikidata": "Q151954", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 9392226279, + "lat": 46.7746037, + "lon": 5.5221487, + "tags": { + "access": "customers", + "addr:city": "Arlay", + "addr:country": "FR", + "addr:postcode": "39140", + "addr:street": "A39 - Aire du Jura", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Aire du Jura Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedujurasupercharger" + } + }, + { + "type": "node", + "id": 9392346650, + "lat": 48.8269293, + "lon": 2.1185924, + "tags": { + "access": "customers", + "addr:city": "Le Chesnay-Rocquencourt", + "addr:country": "FR", + "addr:postcode": "78150", + "addr:street": "Avenue Charles de Gaulle", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Parly 2 Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/versaillessupercharger" + } + }, + { + "type": "node", + "id": 9393026644, + "lat": 45.32288, + "lon": 4.9950344, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDED", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PLK4IORN6OX", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9393058038, + "lat": 45.34208, + "lon": 5.0648704, + "tags": { + "access": "customers", + "addr:city": "Saint-Barthélémy", + "addr:country": "FR", + "addr:postcode": "38270", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lidl Charging Station Saint-Barthelemy", + "owner": "Lidl", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9393070857, + "lat": 45.290297, + "lon": 4.9536226, + "tags": { + "amenity": "charging_station", + "brand": "Grolleau", + "capacity": "2", + "fee": "no", + "model": "Groove", + "motorcar": "yes", + "name": "Super U - St Sorlin - Grolleau", + "network": "Grolleau", + "opening_hours": "Mo-Sa 08:45-19:45", + "operator": "Super U", + "owner": "Super U", + "socket:typee": "2", + "socket:typee:output": "3" + } + }, + { + "type": "node", + "id": 9393087440, + "lat": 45.2800368, + "lon": 4.820465, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lidl Charging Station Saint-Rambert d'Albon", + "owner": "Lidl" + } + }, + { + "type": "node", + "id": 9393090693, + "lat": 45.2720286, + "lon": 4.8865714, + "tags": { + "amenity": "charging_station", + "brand": "E-Totem", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SDED", + "owner": "SDED", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3" + } + }, + { + "type": "node", + "id": 9393113063, + "lat": 50.0036394, + "lon": 2.3133587, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "FDE 80", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:cards": "yes", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PPKNFQU", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9393130705, + "lat": 45.457795, + "lon": 4.7600099, + "tags": { + "access": "customers", + "addr:city": "Condrieu", + "addr:housenumber": "2", + "addr:postcode": "69420", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "2", + "name": "Hôtel Le Beau Rivage Destination Charger", + "operator": "Hôtel Le Beau Rivage", + "short_name": "Tesla", + "socket:type2": "2", + "website": "https://www.tesla.com/findus/location/charger/dc12035" + } + }, + { + "type": "node", + "id": 9393131759, + "lat": 45.3438841, + "lon": 4.8057711, + "tags": { + "addr:city": "Salaise-sur-Sanne", + "addr:country": "FR", + "addr:postcode": "38150", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Carrefour Salaise Charging Station", + "socket:typee": "4", + "socket:typee:output": "3" + } + }, + { + "type": "node", + "id": 9393131760, + "lat": 45.3295703, + "lon": 4.805605, + "tags": { + "addr:city": "Salaise-sur-Sanne", + "addr:country": "FR", + "addr:postcode": "38150", + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "name": "Green 7 Charging Station", + "network": "Inconnu", + "operator": "Inconnu", + "socket:typee": "5", + "socket:typee:output": "3", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 9393154883, + "lat": 45.2849486, + "lon": 6.8856395, + "tags": { + "access": "customers", + "addr:city": "Lanslebourg", + "addr:postcode": "73480", + "addr:street": "Chemin des Crueux", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "3", + "name": "Hôtel Saint Charles Val Cenis Destination Charger", + "operator": "Hôtel Saint Charles Val Cenis", + "short_name": "Tesla", + "socket:type2": "2", + "website": "https://www.tesla.com/fr_FR/findus/location/charger/dc22219" + } + }, + { + "type": "node", + "id": 9394527573, + "lat": 45.5279093, + "lon": -0.3036235, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9395389739, + "lat": 45.5920287, + "lon": 5.2435215, + "tags": { + "addr:city": "Bourgoin-Jallieu", + "addr:postcode": "38300", + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "ZeBorne Mazda Bourgoin-Jallieu", + "network": "ZeBorne", + "operator": "Mazda", + "socket:type2": "1", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 9395389740, + "lat": 45.588017, + "lon": 5.262199, + "tags": { + "addr:city": "Bourgoin-Jallieu", + "addr:postcode": "38300", + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "Nissan Bourgoin-Jallieu", + "network": "Nissan", + "operator": "Nissan", + "socket:type1": "1", + "socket:type1:output": "7" + } + }, + { + "type": "node", + "id": 9395389741, + "lat": 45.5863952, + "lon": 5.2595226, + "tags": { + "addr:city": "Bourgoin-Jallieu", + "addr:postcode": "38300", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "ChargePoint Volkswagen Bourgoin-Jallieu", + "network": "ChargePoint", + "operator": "Volkswagen", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "11" + } + }, + { + "type": "node", + "id": 9395500419, + "lat": 45.5889698, + "lon": 5.2755356, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "socket:type3c": "2", + "socket:type3c:output": "7", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9395500420, + "lat": 45.5848421, + "lon": 5.2793906, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "authentication:phone_call": "yes", + "authentication:phone_call:number": "+33 970 830 213", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SEDI", + "owner": "SEDI", + "parking:fee": "no", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9396761775, + "lat": 45.5956366, + "lon": 5.2692547, + "tags": { + "addr:city": "Bourgoin-Jallieu", + "addr:country": "FR", + "addr:postcode": "38300", + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "Ford Bourgoin-Jallieu", + "network": "WAAT", + "operator": "Ford", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "1", + "socket:typee:output": "3", + "source": "https://fr.chargemap.com/" + } + }, + { + "type": "node", + "id": 9397786605, + "lat": 49.9233751, + "lon": 2.3086979, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9399295933, + "lat": 44.1637322, + "lon": -1.0328626, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9399454036, + "lat": 49.0089932, + "lon": 2.5604454, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "10" + } + }, + { + "type": "node", + "id": 9400268601, + "lat": 47.5414698, + "lon": -0.6158821, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9400309065, + "lat": 49.160277, + "lon": -0.301109, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVLink Parking", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "Mo-Th 09:30-19:00; Fr,Sa 09:30-20:00", + "operator": "Centre Commercial Mondevillage", + "owner": "Centre Commercial Mondevillage", + "scooter": "yes", + "socket:type3c": "4", + "socket:type3c:output": "3 kW, 22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9400312579, + "lat": 48.824973, + "lon": 2.5126884, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9400312580, + "lat": 48.8249843, + "lon": 2.5126089, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9400312581, + "lat": 48.8249929, + "lon": 2.5125278, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9400312582, + "lat": 48.825003, + "lon": 2.5124517, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9400445139, + "lat": 16.3044996, + "lon": -61.0745694, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9402081451, + "lat": 49.1131785, + "lon": 6.1711152, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9402128807, + "lat": 48.5907269, + "lon": 7.7398458, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "authentication:membership_card": "yes", + "capacity": "1", + "manufacturer": "Schneider Electric", + "model": "PKF16F723", + "motorcar": "yes", + "socket:typee": "1", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9402871774, + "lat": 43.2852055, + "lon": 3.5175852, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34003001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9403059284, + "lat": 48.7265639, + "lon": 2.0795032, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9403331688, + "lat": 49.3442638, + "lon": 0.1029978, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Touques - Place Georges Roger", + "operator": "MobiSDEC" + } + }, + { + "type": "node", + "id": 9403499868, + "lat": 48.5802618, + "lon": -2.1447682, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE22", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDE22", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9404278254, + "lat": 47.4098456, + "lon": -0.6205871, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9405205339, + "lat": 43.6109093, + "lon": 1.3705515, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9405593066, + "lat": 46.8937709, + "lon": -0.9313837, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9405852534, + "lat": 48.691668, + "lon": 6.1307386, + "tags": { + "amenity": "charging_station", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 9406230944, + "lat": 43.6085176, + "lon": 1.3830071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "position exacte à determiner", + "operator": "Révéo", + "ref:FR:Toulouse_metropole": "FR*M31*E31555*017*1", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9407532091, + "lat": 47.6351682, + "lon": 1.4074665, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "motorcycle": "no", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 9407609979, + "lat": 47.5507442, + "lon": 1.5398106, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9407669508, + "lat": 48.48221, + "lon": 7.7300559, + "tags": { + "amenity": "charging_station", + "protected": "bollard" + } + }, + { + "type": "node", + "id": 9407669509, + "lat": 48.4821985, + "lon": 7.7301274, + "tags": { + "amenity": "charging_station", + "protected": "bollard" + } + }, + { + "type": "node", + "id": 9407699649, + "lat": 48.9741596, + "lon": 2.6425311, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9407769493, + "lat": 42.6668408, + "lon": 2.9169653, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "nexans" + } + }, + { + "type": "node", + "id": 9410336488, + "lat": 44.8709003, + "lon": 0.5033556, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9410557539, + "lat": 48.8386177, + "lon": 2.4936675, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9410557540, + "lat": 48.8385955, + "lon": 2.4936748, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9410557541, + "lat": 48.8385733, + "lon": 2.4936821, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9410557542, + "lat": 48.838551, + "lon": 2.4936894, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9410557543, + "lat": 48.8385288, + "lon": 2.4936967, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9410557544, + "lat": 48.8385065, + "lon": 2.493704, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9410920327, + "lat": 48.8417201, + "lon": 1.9341996, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SEYMABORNE" + } + }, + { + "type": "node", + "id": 9411173232, + "lat": 49.6067126, + "lon": 0.7674618, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 9411373639, + "lat": 49.9466951, + "lon": 2.3128575, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*P58D24440E77BF", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9411561111, + "lat": 44.111255, + "lon": 5.1056482, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Vauclus'élec, syndicat d'énergie vauclusien" + } + }, + { + "type": "node", + "id": 9412469934, + "lat": 47.4044748, + "lon": -0.4845269, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9413049946, + "lat": 45.9050349, + "lon": 6.1469449, + "tags": { + "amenity": "charging_station", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 9413391965, + "lat": 47.3810168, + "lon": -2.5433553, + "tags": { + "amenity": "charging_station", + "operator": "Ingeteam" + } + }, + { + "type": "node", + "id": 9414018532, + "lat": 16.2572799, + "lon": -61.5171017, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9415180667, + "lat": 49.0495966, + "lon": 7.043119, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180668, + "lat": 49.0495755, + "lon": 7.0430814, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180669, + "lat": 49.0495518, + "lon": 7.0430399, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180670, + "lat": 49.0495228, + "lon": 7.0429943, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180671, + "lat": 49.0494955, + "lon": 7.04295, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180672, + "lat": 49.0511642, + "lon": 7.0390537, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180673, + "lat": 49.051195, + "lon": 7.0390054, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9415180674, + "lat": 49.0512838, + "lon": 7.038878, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9416412993, + "lat": 43.4818255, + "lon": -1.4457293, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9416412994, + "lat": 43.4818268, + "lon": -1.4457996, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9416412995, + "lat": 43.4818268, + "lon": -1.4458609, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9416412996, + "lat": 43.4818242, + "lon": -1.445924, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9417620137, + "lat": 49.0477962, + "lon": 1.16251, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Siege 27 Charging Station" + } + }, + { + "type": "node", + "id": 9417986793, + "lat": 49.1176528, + "lon": 6.2473976, + "tags": { + "amenity": "charging_station", + "fee": "no", + "maxstay": "30 minutes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl" + } + }, + { + "type": "node", + "id": 9417986794, + "lat": 49.1176983, + "lon": 6.2473911, + "tags": { + "amenity": "charging_station", + "fee": "no", + "maxstay": "30 minutes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl" + } + }, + { + "type": "node", + "id": 9418761237, + "lat": 45.6400736, + "lon": 5.8704335, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9418812229, + "lat": 45.6381163, + "lon": 5.8715101, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "etotem" + } + }, + { + "type": "node", + "id": 9420793255, + "lat": 48.8300796, + "lon": 2.6363392, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9421322904, + "lat": 46.8347888, + "lon": 3.4700838, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "operator": "E. Leclerc Decize" + } + }, + { + "type": "node", + "id": 9421381612, + "lat": 48.6498318, + "lon": 6.1941369, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "description": "Nécessite badge ou application mobile Sodetrel ou scanneur de QR Code. 50cts/30min", + "fee": "yes", + "motorcar": "yes", + "ref": "MAT-005120", + "socket:type2": "2", + "socket:type2:amperage": "22", + "socket:typee": "2", + "website": "http://qrc.sodetrel.fr/corri-door" + } + }, + { + "type": "node", + "id": 9423032038, + "lat": 44.2868408, + "lon": 0.2704807, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9423060232, + "lat": 49.1156571, + "lon": 6.2331118, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9423060237, + "lat": 49.1155131, + "lon": 6.2334082, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9423419443, + "lat": 43.9528393, + "lon": 4.9022988, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "Caisse D'epargne" + } + }, + { + "type": "node", + "id": 9423695391, + "lat": 48.7046938, + "lon": 2.1909354, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9424013424, + "lat": -22.249626, + "lon": 166.4707471, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9424013425, + "lat": -22.2497177, + "lon": 166.4708098, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9425049672, + "lat": 44.7778497, + "lon": -0.6465786, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Qovoltis", + "payment:none": "yes" + } + }, + { + "type": "node", + "id": 9425175331, + "lat": 45.1433955, + "lon": 4.116134, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE43 - Haute-Loire", + "ref:EU:EVSE": "FR*EBN*PWVFSVWVVI6", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://e-totem.fr" + } + }, + { + "type": "node", + "id": 9425572115, + "lat": 50.9471164, + "lon": 1.8554962, + "tags": { + "access": "private", + "amenity": "charging_station", + "bicycle": "yes", + "operator": "Calais Opale Bus" + } + }, + { + "type": "node", + "id": 9425908032, + "lat": 16.2674324, + "lon": -61.5156646, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9425938937, + "lat": 16.256718, + "lon": -61.5153476, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9426896854, + "lat": 47.2243417, + "lon": 5.9677541, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9426896873, + "lat": 46.9024219, + "lon": 6.330225, + "tags": { + "access": "private", + "amenity": "charging_station", + "support": "wall" + } + }, + { + "type": "node", + "id": 9426896874, + "lat": 46.9026163, + "lon": 6.3302346, + "tags": { + "access": "private", + "amenity": "charging_station", + "support": "wall" + } + }, + { + "type": "node", + "id": 9427984996, + "lat": 50.6673327, + "lon": 2.3923475, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "ref:EU:EVSE": "FR*H01*P62901*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9428117106, + "lat": 45.8407268, + "lon": 6.2112304, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Tesla" + } + }, + { + "type": "node", + "id": 9429150494, + "lat": 43.6599528, + "lon": -1.4261475, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9430422098, + "lat": 50.4393741, + "lon": 3.1007867, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "ref:EU:EVSE": "FR*H04*P59489*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9431074688, + "lat": 45.8321356, + "lon": 6.1620219, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9431774448, + "lat": 45.271317, + "lon": 5.8930762, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "no", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 9431803812, + "lat": 45.4343736, + "lon": 4.4176751, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9434192093, + "lat": 45.529127, + "lon": 4.6200325, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "e-totem; saint Étienne métropole" + } + }, + { + "type": "node", + "id": 9434215815, + "lat": 49.074261, + "lon": 7.0070624, + "tags": { + "addr:city": "Woustviller", + "addr:housenumber": "24", + "addr:street": "Rue de Nancy", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "parking:fee": "no", + "phone": "+33 3 88 68 84 58", + "socket:schuko": "2", + "socket:schuko:output": "2 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://freshmile.com" + } + }, + { + "type": "node", + "id": 9436791552, + "lat": 49.0091441, + "lon": 1.1576468, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "900.119", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9436797295, + "lat": 49.0209744, + "lon": 1.1280527, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "SIEGE 27 | 900.087", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9437083877, + "lat": 48.7734092, + "lon": 2.2382163, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "parking:fee": "no", + "socket:domestic": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "230" + } + }, + { + "type": "node", + "id": 9437083878, + "lat": 48.773433, + "lon": 2.2381631, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "parking:fee": "no", + "socket:domestic": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "230" + } + }, + { + "type": "node", + "id": 9438911932, + "lat": 45.5246407, + "lon": 4.875622, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9439512240, + "lat": 43.3026261, + "lon": 5.4005502, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13204*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9440766029, + "lat": 47.2725724, + "lon": 0.1675273, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "opening_hours": "24/7", + "operator": "U", + "ref": "MAT-017376;MAT-017373;MAT-017375;MAT-017374" + } + }, + { + "type": "node", + "id": 9441257543, + "lat": 48.5600503, + "lon": 1.0389055, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*SEN1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9441804159, + "lat": 48.5864229, + "lon": 7.5565282, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "opening_hours": "24/7", + "operator": "Freshmile", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9441816401, + "lat": 48.5988895, + "lon": 7.6929864, + "tags": { + "access": "yes", + "addr:city": "Strasbourg", + "addr:street": "Rue Baden Powell", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "level": "0", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9441825396, + "lat": 48.605074, + "lon": 7.6876438, + "tags": { + "access": "yes", + "addr:street": "Rue Albert Schweitzer", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9441829647, + "lat": 48.5616246, + "lon": 7.5905583, + "tags": { + "access": "yes", + "addr:city": "Kolbsheim", + "addr:street": "Rue Jacques Maritain", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9441829655, + "lat": 48.6494233, + "lon": 7.7292057, + "tags": { + "access": "yes", + "addr:city": "Reichstett", + "addr:street": "Boulevard des Enseignes", + "amenity": "charging_station", + "capacity": "14", + "description": "Bornes et places pour 14 véhicules électriques. \n\nRECHARGEZ VOTRE VEHICULE\nAvec VIRTA, plus de 58 bornes de recharge sont à votre disposition à Shopping Promenade pour recharger votre véhicule électrique en toute simplicité.\n\nMOYENS DE PAIEMENT :\n- Avec v", + "fee": "yes", + "manufacturer": "Ensto", + "name": "VIRTA", + "operator": "VIRTA" + } + }, + { + "type": "node", + "id": 9441830991, + "lat": 48.6522248, + "lon": 7.7330474, + "tags": { + "access": "yes", + "addr:city": "Reichstett", + "addr:street": "Boulevard des Enseignes", + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "manufacturer": "Ensto", + "name": "VIRTA", + "operator": "VIRTA" + } + }, + { + "type": "node", + "id": 9441839172, + "lat": 48.5037843, + "lon": 7.6078953, + "tags": { + "access": "yes", + "addr:city": "Blaesheim", + "addr:housenumber": "1", + "addr:street": "Rue du Lavoir", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9441843324, + "lat": 48.4705411, + "lon": 7.7268037, + "tags": { + "access": "yes", + "addr:city": "Plobsheim", + "addr:street": "Rue du Moulin", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9441855754, + "lat": 48.6525563, + "lon": 7.7304984, + "tags": { + "access": "yes", + "addr:city": "Reichstett", + "addr:street": "Boulevard des Enseignes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "manufacturer": "Ensto", + "name": "VIRTA", + "operator": "VIRTA" + } + }, + { + "type": "node", + "id": 9441859658, + "lat": 48.6513008, + "lon": 7.7322508, + "tags": { + "access": "yes", + "addr:city": "Reichstett", + "addr:street": "Boulevard des Enseignes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Ensto", + "name": "VIRTA", + "operator": "VIRTA" + } + }, + { + "type": "node", + "id": 9441865695, + "lat": 48.5390065, + "lon": 7.5806534, + "tags": { + "access": "yes", + "addr:city": "Duttlenheim", + "addr:street": "Aire de la Bruche", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "manufacturer": "Alpitronic", + "name": "ALLEGO", + "operator": "ALLEGO" + } + }, + { + "type": "node", + "id": 9441881339, + "lat": 48.6692729, + "lon": 7.712476, + "tags": { + "access": "yes", + "addr:city": "Vendenheim", + "addr:street": "Rue de la Bique", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "Schneider Electric", + "name": "Freshmile", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9442869976, + "lat": 48.8257055, + "lon": 1.9532096, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "SEY", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9444883017, + "lat": 48.9968578, + "lon": 1.6314758, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9445279623, + "lat": 48.8911994, + "lon": 2.2475463, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "name": "Relais de la Defense", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF059983" + } + }, + { + "type": "node", + "id": 9447459212, + "lat": 49.2603825, + "lon": 2.4742302, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Mouv'Oise", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SE60", + "ref:EU:EVSE": "FR*S60*PCREIL8MAI", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9447843418, + "lat": 48.8958165, + "lon": 2.3733875, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9447843419, + "lat": 48.8957914, + "lon": 2.3733198, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9447843420, + "lat": 48.895772, + "lon": 2.3732541, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9447843421, + "lat": 48.8957588, + "lon": 2.3732038, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9447843422, + "lat": 48.8957354, + "lon": 2.3731475, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9447859966, + "lat": 44.9231004, + "lon": -0.6186595, + "tags": { + "access": "yes", + "amenity": "charging_station", + "charging_station:output": "50 kW", + "fee": "yes", + "name": "Blanquefort TechnoWest", + "operator": "Freshmiles", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 9447932401, + "lat": 48.6489753, + "lon": 0.7576919, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "opening_hours": "24/7", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61429A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 9447936073, + "lat": 48.5064276, + "lon": -1.2440756, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "OUESTCHARGE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE35", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9448440339, + "lat": 48.6737372, + "lon": 5.885883, + "tags": { + "amenity": "charging_station", + "network": "Freshmile", + "source": "survey" + } + }, + { + "type": "node", + "id": 9449150356, + "lat": 43.1764262, + "lon": 0.9717943, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9450777616, + "lat": 48.904037, + "lon": 2.305081, + "tags": { + "amenity": "charging_station", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 9451159449, + "lat": 46.0776156, + "lon": 4.0689802, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Prise type E (domestique) et type 2 (22kW).", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9451439041, + "lat": 43.8082335, + "lon": 4.2419435, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "opening_hours": "24/7", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl", + "parking:fee": "no", + "socket:type2": "6", + "socket:type2:output": "22 kW", + "socket:typee": "6", + "socket:typee:output": "3 kW", + "source": "survey;local knowledge" + } + }, + { + "type": "node", + "id": 9452762954, + "lat": 47.6157081, + "lon": 1.321509, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "operator": "Leroy Merlin Blois" + } + }, + { + "type": "node", + "id": 9453540406, + "lat": 44.8654248, + "lon": 4.9399444, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Chargepoint" + } + }, + { + "type": "node", + "id": 9455054589, + "lat": 42.0211384, + "lon": 9.4091168, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9459107213, + "lat": 46.5419543, + "lon": 3.3438188, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9459226553, + "lat": 50.9488525, + "lon": 1.955527, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3.7 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9459226554, + "lat": 50.9470515, + "lon": 1.9644103, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3.7 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9459226555, + "lat": 50.9473312, + "lon": 1.9511645, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:schuko": "2", + "socket:schuko:output": "3.7 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9460576817, + "lat": 48.6743333, + "lon": 2.1373331, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Kia Gometz - ULIS AUTOMOBILES", + "operator": "DRIVECO", + "owner": "Kia Gometz - ULIS AUTOMOBILES", + "ref:EU:EVSE": "FR*G42*PAEROAUTOKIA91940*1", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9460579317, + "lat": 48.6738459, + "lon": 2.1373702, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Opel Gometz", + "operator": "DRIVECO", + "owner": "Opel Gometz", + "ref:EU:EVSE": "FR*G44*PAEROAUTOOPEL91940*1", + "scooter": "no", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9460853674, + "lat": 48.9189828, + "lon": 1.9771312, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9461103927, + "lat": 48.846823, + "lon": 2.4521403, + "tags": { + "access": "yes", + "amenity": "charging_station", + "amperage": "250", + "authentication:debit_card": "yes", + "authentication:nfc": "yes", + "capacity": "5", + "covered": "no", + "fee": "yes", + "name": "Metropolis - Express - Vincennes - Murs du parc", + "operator": "Métropolis Recharge", + "parking:fee": "yes", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "150 kW", + "voltage": "800" + } + }, + { + "type": "node", + "id": 9461186208, + "lat": 50.7057204, + "lon": 3.1603286, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9462595005, + "lat": 50.9390351, + "lon": 2.5393662, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9462717725, + "lat": 45.9014746, + "lon": 6.8603237, + "tags": { + "amenity": "charging_station", + "description": "https://www.syane.fr/", + "name": "Eborn", + "website": "https://moncompte.reseau-eborn.fr/" + } + }, + { + "type": "node", + "id": 9462805876, + "lat": 49.1105498, + "lon": 7.0645148, + "tags": { + "addr:city": "Sarreguemines", + "addr:street": "Rue des Chèvres", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Freshmile", + "phone": "+33388688458", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "2 kW", + "source": "Survey; Freshmile.com", + "website": "http://www.freshmile.com" + } + }, + { + "type": "node", + "id": 9462966489, + "lat": 41.6958374, + "lon": 9.0665972, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "payment:credit_cards": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9464603183, + "lat": 48.8213129, + "lon": 2.3923832, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "manufacturer": "Schneider", + "model": "Evlink Smart WallBox EVB1A22P4EKI", + "parking:fee": "no", + "socket:type2": "1", + "socket:typee": "1", + "socket:typee:output": "2.3 kW" + } + }, + { + "type": "node", + "id": 9464603185, + "lat": 48.8214849, + "lon": 2.3927387, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "manufacturer": "Schneider", + "model": "Evlink Smart WallBox EVB1A22P4EKI", + "parking:fee": "no", + "socket:type2": "1", + "socket:typee": "1", + "socket:typee:output": "2.3 kW" + } + }, + { + "type": "node", + "id": 9465986848, + "lat": 48.6910886, + "lon": 6.1276501, + "tags": { + "access": "yes", + "addr:city": "Laxou", + "addr:postcode": "54520", + "addr:street": "Rue de la Sapinière", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "fr:Tesla Supercharger", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "contact:email": "charging-france@tesla.com", + "contact:phone": "+33 9 70730850", + "fee": "yes", + "motorcar": "yes", + "name": "Laxou Supercharger", + "network": "Supercharger Tesla", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "ref:EU:EVSE": "FR*TSC*P20263", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/laxousupercharger" + } + }, + { + "type": "node", + "id": 9466176969, + "lat": 43.4509706, + "lon": 5.4486181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13041*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9469192246, + "lat": 49.0272818, + "lon": 1.142781, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "SIEGE 27 | 900.083", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9469518205, + "lat": 46.1241213, + "lon": 3.4287721, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "eborn", + "source": "BDOrtho IGN 2022", + "start_date": "2022-01", + "survey:date": "2022-05-28", + "wikimedia_commons": "File:Borne de charge véhicules électriques (nouveau parking place de l'Hôtel de Ville, Vichy) 2022-05-14.JPG" + } + }, + { + "type": "node", + "id": 9469533797, + "lat": 46.1355717, + "lon": 3.4328913, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "Ingeteam", + "motorcar": "yes", + "source": "BDOrtho IGN 2022", + "start_date": "2022-01", + "survey:date": "2022-01-08" + } + }, + { + "type": "node", + "id": 9471641960, + "lat": 49.8978542, + "lon": 2.2664877, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PJGPERV", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9472053394, + "lat": 43.2885904, + "lon": 5.3843019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13206*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9472286921, + "lat": 45.2137251, + "lon": 4.3440556, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE43 - Haute-Loire", + "ref:EU:EVSE": "FR*EBN*PED9WZC9LMX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9472429586, + "lat": 48.7344282, + "lon": 2.4729652, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0,35€/kWh", + "covered": "no", + "description": "Paiement par carte bancaire\nBadges E-Totem", + "fee": "yes", + "name": "Cimetière intercommunal de la Fontaine Saint-Martin", + "operator": "E-Totem", + "payment:credit_cards": "yes", + "power": "22 kW" + } + }, + { + "type": "node", + "id": 9480912537, + "lat": 49.0490322, + "lon": 1.6019265, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "SEY" + } + }, + { + "type": "node", + "id": 9481524013, + "lat": 45.7559101, + "lon": 5.4777856, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9481524937, + "lat": 45.5729126, + "lon": 5.9564976, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9482016457, + "lat": 45.9403357, + "lon": 4.7700647, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9482090069, + "lat": 16.2727623, + "lon": -61.5185714, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9482291216, + "lat": 16.2703007, + "lon": -61.5172307, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9482844607, + "lat": 45.5244129, + "lon": 4.8716437, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9483759217, + "lat": 48.8624919, + "lon": 2.1392025, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9484059353, + "lat": 45.7955416, + "lon": 5.0484961, + "tags": { + "amenity": "charging_station", + "charging_station:output": "7 kW", + "fee": "yes", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "network": "Izivia", + "operator": "EDF", + "owner": "Grand Lyon", + "ref": "JOG01B" + } + }, + { + "type": "node", + "id": 9484059354, + "lat": 45.7955501, + "lon": 5.048429, + "tags": { + "amenity": "charging_station", + "charging_station:output": "7 kW", + "fee": "yes", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "network": "Izivia", + "operator": "EDF", + "owner": "Grand Lyon", + "ref": "JOG01A" + } + }, + { + "type": "node", + "id": 9484332604, + "lat": 48.9616973, + "lon": 1.796777, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SEY" + } + }, + { + "type": "node", + "id": 9484621748, + "lat": 49.4999723, + "lon": 0.9296072, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9487061693, + "lat": 47.8869064, + "lon": 1.8345575, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45075*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9489320604, + "lat": 47.8938133, + "lon": 2.020977, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45089*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9489322452, + "lat": 47.8636066, + "lon": 1.891217, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "223771186397477", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*P45232*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9491605081, + "lat": 47.610444, + "lon": 1.90451, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41046-16", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9491731471, + "lat": 47.2672719, + "lon": -1.4408771, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9492093775, + "lat": 47.668808, + "lon": 1.525589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41155-50", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9492121722, + "lat": 50.4173009, + "lon": 2.9525794, + "tags": { + "amenity": "charging_station", + "fixme": "Postion exacte dans le parking à détérminer" + } + }, + { + "type": "node", + "id": 9492463850, + "lat": 47.6014409, + "lon": 2.0229897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41106-34", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9492524100, + "lat": 49.2616264, + "lon": 1.8733889, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9492571188, + "lat": 47.71724, + "lon": 1.612858, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41243-73", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9492591367, + "lat": 47.7157057, + "lon": 1.6054932, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41198-75", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9493917912, + "lat": 44.727325, + "lon": 1.9266455, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "EVTronic" + } + }, + { + "type": "node", + "id": 9494614404, + "lat": 47.703519, + "lon": 1.5083549, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41136-41", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494657044, + "lat": 47.7007686, + "lon": 1.5097987, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41136-40", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494660212, + "lat": 47.911244, + "lon": 1.526337, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41173-2", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494678231, + "lat": 47.7065255, + "lon": 1.5065689, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41136-39", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494704941, + "lat": 47.958865, + "lon": 1.428741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41173-3", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494758136, + "lat": 47.5330512, + "lon": 1.8060391, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41159-53", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494771296, + "lat": 47.5426082, + "lon": 1.8489695, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41083-28", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9494848404, + "lat": 47.590011, + "lon": 1.658231, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41074-26", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9495484154, + "lat": 48.0848181, + "lon": 1.858786, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "SDE 28", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28) | FR*S28", + "owner": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28)", + "ref:EU:EVSE": "FR*S28*P28303*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9495592671, + "lat": 48.082316, + "lon": 1.742558, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*TER1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9495759694, + "lat": 46.0622607, + "lon": -1.0929395, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "8", + "fee": "no", + "name": "Chargeurs pour vélos" + } + }, + { + "type": "node", + "id": 9496416893, + "lat": 43.1947284, + "lon": 3.0149203, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262007", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9497353827, + "lat": 48.1460422, + "lon": 1.6828167, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ORG1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9497576797, + "lat": 49.0374631, + "lon": 1.5819709, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9497576798, + "lat": 49.0375, + "lon": 1.5819608, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9498154397, + "lat": 48.6141942, + "lon": 2.6615246, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9498154398, + "lat": 48.6143229, + "lon": 2.6606979, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9498536143, + "lat": 47.8524839, + "lon": 2.6846485, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Jardin des arbres", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9502432906, + "lat": 44.3581351, + "lon": 2.554539, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "source": "survey 2022" + } + }, + { + "type": "node", + "id": 9502432907, + "lat": 44.3581601, + "lon": 2.5544823, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "source": "survey 2022" + } + }, + { + "type": "node", + "id": 9502647733, + "lat": 43.6638391, + "lon": 5.156329, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9502667451, + "lat": 43.6892922, + "lon": 5.2049994, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9505282114, + "lat": 50.6310423, + "lon": 3.0008606, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9505282115, + "lat": 50.631072, + "lon": 3.0008179, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9505282116, + "lat": 50.6311055, + "lon": 3.0007752, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9505294817, + "lat": 50.6311493, + "lon": 3.0007203, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9505692364, + "lat": 48.7390485, + "lon": 2.3294681, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 9505717839, + "lat": 48.7352831, + "lon": 2.32494, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Sigeif", + "operator:wikidata": "Q3508360", + "operator:wikipedia": "fr:Syndicat intercommunal pour le gaz et l'électricité en Île-de-France" + } + }, + { + "type": "node", + "id": 9507423638, + "lat": 44.8252302, + "lon": -0.5478252, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "level": "1", + "operator": "INDIGO" + } + }, + { + "type": "node", + "id": 9509254203, + "lat": 43.3612818, + "lon": 5.3297972, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13216*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9512186320, + "lat": 46.9950714, + "lon": -0.9448415, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9512443388, + "lat": 45.7694662, + "lon": 4.8375713, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tolozan", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY104B" + } + }, + { + "type": "node", + "id": 9512443389, + "lat": 45.7694844, + "lon": 4.83757, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tolozan", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY104A" + } + }, + { + "type": "node", + "id": 9512443390, + "lat": 45.7694475, + "lon": 4.8375733, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tolozan", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY104C" + } + }, + { + "type": "node", + "id": 9512443391, + "lat": 45.7694142, + "lon": 4.837578, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tolozan", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY104D" + } + }, + { + "type": "node", + "id": 9512443392, + "lat": 45.7690061, + "lon": 4.8428883, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Foch - Lyautey", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY605A;MAT-008956", + "ref:EU:EVSE": "FR*GLY*PLYON7911", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9512443393, + "lat": 45.7689651, + "lon": 4.8428945, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Foch - Lyautey", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY605B;MAT-008957", + "ref:EU:EVSE": "FR*GLY*PLYON7921", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9512443394, + "lat": 45.768921, + "lon": 4.8429037, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Foch - Lyautey", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY605C;MAT-008958", + "ref:EU:EVSE": "FR*GLY*PLYON7931", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9512443395, + "lat": 45.7688779, + "lon": 4.8429126, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Foch - Lyautey", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY605D;MAT-008959", + "ref:EU:EVSE": "FR*GLY*PLYON7911", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9512908947, + "lat": 42.4659731, + "lon": 9.4585046, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9513084735, + "lat": 48.7259167, + "lon": 2.2614008, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "capacity": "4", + "fee": "no", + "level": "1", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9514836823, + "lat": 49.1692607, + "lon": 2.252552, + "tags": { + "amenity": "charging_station", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9514983021, + "lat": 43.3576808, + "lon": 5.337133, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13216*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9515077411, + "lat": 48.61066, + "lon": 2.6236448, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "brand:wikipedia": "en:ChargePoint", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "operator:wikipedia": "en:ChargePoint" + } + }, + { + "type": "node", + "id": 9515957019, + "lat": 45.8224266, + "lon": 6.7266557, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "6", + "description": "Les bornes sont composées d'une prise électrique, et d'un support de fixation pour stationner le vélo (chargeur non fourni)", + "fee": "no", + "motorcar": "no", + "motorcycle": "no", + "opening_hours": "24/7", + "operator": "chargeur velo éléctrique communale", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 9516382060, + "lat": 48.5387507, + "lon": 7.7177896, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Bornes et places pour 2 véhicules électriques.", + "fee": "yes", + "name": "Shell Recharge", + "not:operator:wikidata": "Q110716465", + "operator": "Shell Recharge" + } + }, + { + "type": "node", + "id": 9516467498, + "lat": 49.4015515, + "lon": 2.7961992, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9517177665, + "lat": 48.9850389, + "lon": 1.7460041, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9519057329, + "lat": 47.9319931, + "lon": 1.922194, + "tags": { + "access": "permit", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "fee": "yes", + "manufacturer": "EVlink", + "mapillary": "2174672826006124", + "motorcar": "yes", + "name": "ChargePoint", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9519152815, + "lat": 44.0580646, + "lon": 1.0983052, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9519164753, + "lat": 43.380852, + "lon": 5.3486857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13071*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9520584090, + "lat": 45.8217701, + "lon": 4.7623787, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Mea Energies", + "socket:type2": "4", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9520896560, + "lat": 48.2346277, + "lon": -3.3162791, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ouest Charge" + } + }, + { + "type": "node", + "id": 9522208979, + "lat": 47.0954633, + "lon": 2.2429261, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "operator": "Vinci Autoroutes", + "voltage": "400" + } + }, + { + "type": "node", + "id": 9522309245, + "lat": 49.2041989, + "lon": 4.0122502, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "fee": "yes", + "name": "IONITY Champfleury", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9523627467, + "lat": 43.2586314, + "lon": 5.4171365, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "4", + "description": "1x22kW 3x7kW 1x3kW", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "name": "La Recharge", + "opening_hours": "24/7", + "parking:fee": "no", + "scooter": "no" + } + }, + { + "type": "node", + "id": 9523658738, + "lat": 43.266345, + "lon": 5.3950241, + "tags": { + "access": "yes", + "addr:housenumber": "131", + "addr:street": "Boulevard Michelet", + "amenity": "charging_station", + "capacity": "2", + "description": "AC22kVA - evzen", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "no", + "payment:cash": "no", + "payment:membership_card": "no", + "phone": "+33488776110", + "ref:EU:EVSE": "FR*M13*P13209*003", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "larecharge.ampmetropole.fr" + } + }, + { + "type": "node", + "id": 9523661233, + "lat": 43.2586825, + "lon": 5.4090954, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "4 prises domestiques", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "name": "Totem Mobi", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PET8HVBT9DL", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9524570066, + "lat": 47.8786756, + "lon": 7.190519, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9524976758, + "lat": 50.4091503, + "lon": 2.9763674, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de recharge Aushopping Noyelles" + } + }, + { + "type": "node", + "id": 9525573156, + "lat": 48.7549599, + "lon": 2.3014001, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "covered": "no", + "fee": "yes", + "operator": "Metropolis Recharge" + } + }, + { + "type": "node", + "id": 9526665887, + "lat": 47.6853798, + "lon": 1.5601892, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41198-74", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526679392, + "lat": 47.8209733, + "lon": 1.3926476, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41123-36", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526720149, + "lat": 47.8220674, + "lon": 1.2941223, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41171-57", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526801211, + "lat": 47.7441451, + "lon": 1.3627369, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41130-37", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526814906, + "lat": 48.0137785, + "lon": 1.4808802, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28295*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526823813, + "lat": 47.6394132, + "lon": 1.4476589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41150-43", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526825671, + "lat": 47.9022767, + "lon": 1.2333525, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41154-49", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526833571, + "lat": 48.0958963, + "lon": 1.5141331, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*VAR1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526850686, + "lat": 47.5929773, + "lon": 1.4573185, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41104-32", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526872798, + "lat": 47.664138, + "lon": 1.3877969, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Ménars", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526887107, + "lat": 47.5337194, + "lon": 2.0332748, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41161-54", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526888662, + "lat": 47.6658003, + "lon": 1.3878109, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Villerbon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526890240, + "lat": 47.5146844, + "lon": 2.150983, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41176-58", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526911763, + "lat": 47.6086848, + "lon": 1.359049, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41047-17", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526947160, + "lat": 47.5837981, + "lon": 1.3398546, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-11", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526947161, + "lat": 47.5933907, + "lon": 1.3383049, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-4", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526969218, + "lat": 47.5879539, + "lon": 1.3389026, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-6", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526970680, + "lat": 47.5888174, + "lon": 1.3402659, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-5", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526986947, + "lat": 47.5817074, + "lon": 1.3781448, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41295-100", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526992765, + "lat": 47.567045, + "lon": 1.369809, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41242-72", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9526993986, + "lat": 47.5877892, + "lon": 1.3326214, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41018-10", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527006591, + "lat": 47.573036, + "lon": 1.355931, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41242-70", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527025602, + "lat": 47.5663904, + "lon": 1.358631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41242-71", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527182627, + "lat": 48.8346313, + "lon": 2.3056285, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9015*05", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527406389, + "lat": 48.0668976, + "lon": 1.28934, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*PON1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527443200, + "lat": 48.075028, + "lon": 1.371158, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "SDE 28", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28) | FR*S28", + "owner": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28)", + "ref:EU:EVSE": "FR*S28*P28198*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527480493, + "lat": 47.9971578, + "lon": 1.2337601, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CLO1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527491643, + "lat": 48.005573, + "lon": 1.233731, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CLO2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527492851, + "lat": 48.112961, + "lon": 1.3306772, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*MAR1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527507355, + "lat": 47.634798, + "lon": 1.284004, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41091-29", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527512094, + "lat": 47.8875755, + "lon": 1.2102182, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41095-31", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527523252, + "lat": 47.54913, + "lon": 1.545043, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41025-12", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527554248, + "lat": 47.5004141, + "lon": 1.6809035, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41271-93", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527647216, + "lat": 47.5298166, + "lon": 1.3070861, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41032-14", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527680187, + "lat": 47.5248866, + "lon": 1.3878136, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41031-13", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527692377, + "lat": 47.671395, + "lon": 1.2395615, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41040-15", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527707154, + "lat": 47.7571222, + "lon": 1.1924205, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41226-83", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527714604, + "lat": 47.5077591, + "lon": 1.4593588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41067-24", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527724419, + "lat": 47.5243167, + "lon": 1.2500394, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41055-87", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527740223, + "lat": 47.4489517, + "lon": 1.3416509, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41092-30", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527756198, + "lat": 47.4992915, + "lon": 1.4608325, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41050-19", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9527929041, + "lat": 47.4163638, + "lon": 2.0440441, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41212-79", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528012432, + "lat": 47.3132608, + "lon": 2.0355402, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41256-85", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528026089, + "lat": 47.428385, + "lon": 2.0582153, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41204-77", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528045395, + "lat": 47.4254983, + "lon": 2.0504831, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41211-78", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528091356, + "lat": 47.3592933, + "lon": 1.7432347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41194-62", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528104092, + "lat": 47.3561535, + "lon": 1.7445602, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41194-64", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528104104, + "lat": 47.3581832, + "lon": 1.7408565, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41194-63", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528107281, + "lat": 47.363384, + "lon": 1.74353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41194-61", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528125569, + "lat": 47.3656522, + "lon": 1.7972409, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41282-98", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528131588, + "lat": 47.321481, + "lon": 1.669777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41185-60", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528151477, + "lat": 47.327678, + "lon": 1.762534, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41194-65", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528161431, + "lat": 47.411895, + "lon": 1.608735, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41157-51", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528168602, + "lat": 47.8180093, + "lon": 1.0754569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41199-76", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528168616, + "lat": 47.4993452, + "lon": 1.1733835, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41167-95", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528185065, + "lat": 47.9188616, + "lon": 1.0858698, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41275-96", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528227834, + "lat": 47.5013841, + "lon": 1.1719094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41167-94", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528245704, + "lat": 47.3742546, + "lon": 0.6817049, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "BSP", + "operator": "BORNES SOLUTIONS", + "owner": "CATP Tours", + "ref:EU:EVSE": "FR*BSP*P37000000000001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528258891, + "lat": 47.7935684, + "lon": 1.070019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41269-89", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528265988, + "lat": 47.8033897, + "lon": 1.0707857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41269-92", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528271049, + "lat": 47.7945152, + "lon": 1.0601606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41269-90", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528318135, + "lat": 47.8065876, + "lon": 1.0573984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41269-91", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528338677, + "lat": 48.4518519, + "lon": 1.5273318, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "SDE 28", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28) | FR*S28", + "owner": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28)", + "ref:EU:EVSE": "FR*S28*P28085*1", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528338858, + "lat": 48.2001291, + "lon": 1.8842323, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*JAN2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528341426, + "lat": 48.201149, + "lon": 1.8854874, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*JAN1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528354612, + "lat": 48.4505482, + "lon": 1.4635101, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28229*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528356033, + "lat": 48.3470195, + "lon": 1.944172, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*GOMM1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528358380, + "lat": 48.4455744, + "lon": 1.4951093, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528377484, + "lat": 48.4515776, + "lon": 1.4674536, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28229*2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528377697, + "lat": 48.4176552, + "lon": 1.46528, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28220*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528379615, + "lat": 48.4435098, + "lon": 1.4814375, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART8", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528379736, + "lat": 48.448106, + "lon": 1.5405709, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "BSP", + "operator": "BORNES SOLUTIONS", + "owner": "CHARTRES SPORT & LOISIRS", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528381466, + "lat": 48.44771, + "lon": 1.472704, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28229*3", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528381467, + "lat": 48.452696, + "lon": 1.4884358, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART3", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528382633, + "lat": 48.442574, + "lon": 1.494053, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART5", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528382635, + "lat": 48.45027, + "lon": 1.491619, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528384740, + "lat": 48.4172504, + "lon": 1.4581763, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28220*2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528386346, + "lat": 48.4499148, + "lon": 1.4830204, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART4", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528397518, + "lat": 48.4311468, + "lon": 1.4648017, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "SDE 28", + "opening_hours": "24/7", + "operator": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28) | FR*S28", + "owner": "Syndicat Départemental d'Énergies d'Eure et Loir (SDE28)", + "ref:EU:EVSE": "FR*S28*PSDE28*LUC1", + "socket:type2": "3", + "socket:type3c": "3", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9528399203, + "lat": 48.4501928, + "lon": 1.515417, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHART6", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529124809, + "lat": 47.8058087, + "lon": 0.9955368, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41294-99", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529141167, + "lat": 47.688706, + "lon": 1.0173092, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41232-67", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529141220, + "lat": 47.7960472, + "lon": 1.0210878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41158-52", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529151654, + "lat": 47.8804308, + "lon": 0.8090429, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41212-80", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529151753, + "lat": 47.7752248, + "lon": 0.7910746, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41265-86", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529164483, + "lat": 47.7524558, + "lon": 0.6878294, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41070-25", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529168624, + "lat": 47.901047, + "lon": 0.929588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41078-27", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529171767, + "lat": 47.751574, + "lon": 0.861454, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41150-44", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529173563, + "lat": 47.752658, + "lon": 0.862059, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41148-45", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529178620, + "lat": 47.4138357, + "lon": 1.5251505, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41247-84", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529180582, + "lat": 47.2826731, + "lon": 1.8285114, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41110-35", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529190035, + "lat": 47.4183539, + "lon": 1.4249952, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41059-21", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529190049, + "lat": 47.2684299, + "lon": 1.8654422, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41135-38", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529200689, + "lat": 48.2439654, + "lon": 1.4842461, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*GAU1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529209579, + "lat": 48.2642294, + "lon": 1.752506, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*YMON1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529210671, + "lat": 48.2717764, + "lon": 1.6248166, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*VOV2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529217224, + "lat": 47.29178, + "lon": 1.76651, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41280-97", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529221935, + "lat": 47.4214646, + "lon": 1.4297215, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41059-22", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529223799, + "lat": 47.9822101, + "lon": 0.8969523, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41143-42", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529227431, + "lat": 48.1920268, + "lon": 1.575782, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*SAN1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529227999, + "lat": 48.1874123, + "lon": 1.5814361, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529237400, + "lat": 48.6078038, + "lon": 1.6791418, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*EPE1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529238569, + "lat": 48.2705187, + "lon": 1.6267128, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*VOV1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529241179, + "lat": 48.3439692, + "lon": 1.494167, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28122*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529241280, + "lat": 48.4181365, + "lon": 1.3535044, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28337*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529247268, + "lat": 48.461243, + "lon": 1.775181, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*AUN1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529250870, + "lat": 48.1797817, + "lon": 1.3874717, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BON2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529253438, + "lat": 48.3282989, + "lon": 1.6937367, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BOIS1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529260963, + "lat": 48.5065033, + "lon": 1.762401, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BLE1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529263714, + "lat": 48.1825155, + "lon": 1.3851255, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BON1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529265942, + "lat": 48.3546523, + "lon": 1.7713986, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*OUAR1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529266280, + "lat": 48.4612337, + "lon": 1.7724807, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*AUN2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529267010, + "lat": 48.22925, + "lon": 1.3643336, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ALL1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529267416, + "lat": 48.4355697, + "lon": 1.709947, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BEV1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529269337, + "lat": 48.527462, + "lon": 1.687425, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*GAL1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529281316, + "lat": 48.5866068, + "lon": 1.5777932, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*MAI2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529283540, + "lat": 48.5994271, + "lon": 1.6445694, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*HANC1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529286000, + "lat": 48.5226214, + "lon": 1.6891439, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*GAL2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529295255, + "lat": 48.6100354, + "lon": 1.674595, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*EPE2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529298932, + "lat": 48.608723, + "lon": 1.68066, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28140*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529303001, + "lat": 48.5893724, + "lon": 1.5782114, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*MAI1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529305247, + "lat": 48.6419727, + "lon": 1.5223675, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*NOG1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529305886, + "lat": 48.2084019, + "lon": 1.2850365, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*DAN1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529307403, + "lat": 48.2109323, + "lon": 1.1658797, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BROU1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529313678, + "lat": 48.6474, + "lon": 1.533494, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*NOG2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529315084, + "lat": 48.6516332, + "lon": 1.5430173, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*COUL1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529318338, + "lat": 48.2208997, + "lon": 1.3925693, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28259*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529336506, + "lat": 48.188374, + "lon": 1.391492, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BON3", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529338977, + "lat": 48.2989894, + "lon": 1.2445256, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ILL2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529339182, + "lat": 48.2114088, + "lon": 1.1675863, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BROU2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529342894, + "lat": 48.0985016, + "lon": 1.1239086, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ARR1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529360150, + "lat": 48.143368, + "lon": 1.052674, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28079*1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529367174, + "lat": 48.1155504, + "lon": 1.1843886, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CHA1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529367175, + "lat": 48.063342, + "lon": 0.946567, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41005-1", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529371755, + "lat": 48.2993888, + "lon": 1.2431835, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ILL1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529375325, + "lat": 48.21524, + "lon": 1.179665, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BROU3", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529406778, + "lat": 48.3041274, + "lon": 1.2559809, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ILL3", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529407672, + "lat": 48.138444, + "lon": 0.9805325, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BAZ1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529433313, + "lat": 48.7175966, + "lon": 1.369635, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*VER3", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529442843, + "lat": 48.7206838, + "lon": 1.356048, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*VER1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529454090, + "lat": 48.7183074, + "lon": 1.3941959, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*LUR1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529472035, + "lat": 48.7413725, + "lon": 1.3759944, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*DREUX", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529489922, + "lat": 48.7302213, + "lon": 1.3399985, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*VER2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529496531, + "lat": 48.7277231, + "lon": 1.3911609, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*GEM2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529525615, + "lat": 48.4495958, + "lon": 1.2403205, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28116*2", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529541815, + "lat": 48.1949964, + "lon": 0.8969426, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*AUT1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529556798, + "lat": 48.319774, + "lon": 0.8227111, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*CDCP1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529559493, + "lat": 48.3119074, + "lon": 0.9911137, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*THI1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529567963, + "lat": 48.2551858, + "lon": 0.9569119, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*BEA1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529568366, + "lat": 48.3217091, + "lon": 0.8037923, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*ROT3", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529577387, + "lat": 48.4806886, + "lon": 1.1603392, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*P28302*1", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529579343, + "lat": 48.5912454, + "lon": 1.5675137, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*PIE1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529589803, + "lat": 47.2736274, + "lon": 1.5573903, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "MODULO | FR*S41", + "owner": "Modulo (Mobilité Locale Durable)", + "ref:EU:EVSE": "FR*S41*P41220-82", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529592349, + "lat": 48.4076957, + "lon": 1.1324788, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*THIEU1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529592635, + "lat": 48.5793507, + "lon": 1.2441793, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*THYM1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529594857, + "lat": 48.6001007, + "lon": 1.3822445, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "ENERGIE Eure-et-Loir", + "opening_hours": "24/7", + "operator": "ENERGIE Eure-et-Loir | FR*S28", + "owner": "ENERGIE Eure-et-Loir", + "ref:EU:EVSE": "FR*S28*PSDE28*TREM1", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9529686571, + "lat": 45.9443225, + "lon": -0.960023, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9530618722, + "lat": 43.5508946, + "lon": 5.040553, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9530842640, + "lat": 48.0821528, + "lon": -4.3183092, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "SDEF", + "operator": "SDEF" + } + }, + { + "type": "node", + "id": 9530842641, + "lat": 48.0821703, + "lon": -4.3182707, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "SDEF", + "operator": "SDEF" + } + }, + { + "type": "node", + "id": 9530995763, + "lat": 44.8726987, + "lon": 2.0367039, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:none": "no", + "bicycle": "no", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Sousceyrac-en-Quercy - Place des Condamines", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "FDEL 46", + "parking:fee": "no", + "ref": "FR*S46*E46331*001", + "ref:EU:EVSE": "FR*S46*P46331*001", + "socket:chademo": "1", + "socket:chademo:output": "36 kW", + "socket:type2": "1", + "socket:type2:output": "36 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "36 kW", + "socket:typee": "1", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 9532620143, + "lat": 46.5139981, + "lon": -1.7778785, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "8", + "fee": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Sables d'Olonne", + "ref:EU:EVSE": "FR*FR1*PXPTGCMDV0U", + "socket:type2": "8", + "socket:typee": "8", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "400" + } + }, + { + "type": "node", + "id": 9532696470, + "lat": 43.6286535, + "lon": 3.6922371, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9532696471, + "lat": 43.628575, + "lon": 3.6922887, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9532833487, + "lat": 43.8636737, + "lon": 3.3130843, + "tags": { + "amenity": "charging_station", + "name": "Borne de charge voitures" + } + }, + { + "type": "node", + "id": 9533294649, + "lat": 48.8260708, + "lon": 2.1895324, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*26", + "socket:type2": "3", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9533294650, + "lat": 48.8260853, + "lon": 2.1895504, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*26", + "socket:type2": "3", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9533294651, + "lat": 45.871666, + "lon": 3.0422684, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9533417072, + "lat": 46.0329982, + "lon": 4.067197, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 9537382146, + "lat": 46.4647804, + "lon": -1.6180498, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "SYDEV", + "operator": "ouest Vendée", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85288A", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9537745244, + "lat": 42.7404813, + "lon": 2.8915568, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Steak 'n Shake Perpignan", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PDN0FDTWVO7", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9538350822, + "lat": 43.5231826, + "lon": 5.2551658, + "tags": { + "addr:city": "Velaux", + "addr:postcode": "13880", + "addr:street": "Place du Bon Puit", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13112*001", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.lepilote.com/fr/la-recharge/1071" + } + }, + { + "type": "node", + "id": 9543022879, + "lat": 48.8976571, + "lon": 1.8686119, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charge": "5 EUR", + "fee": "yes", + "operator": "Intermarché", + "payment:credit_cards": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW" + } + }, + { + "type": "node", + "id": 9543351213, + "lat": 49.7042987, + "lon": 2.0669746, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PBLSJNA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9544289324, + "lat": 41.6787212, + "lon": 9.1468185, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9544765942, + "lat": 45.154709, + "lon": 2.6219588, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9544920781, + "lat": 44.0884694, + "lon": 7.5935972, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "image": "https://i.imgur.com/CzWDhtj.jpg", + "motor_vehicle": "no", + "opening_hours": "24/7", + "socket:bosch_3pin": "1" + } + }, + { + "type": "node", + "id": 9545038960, + "lat": 48.6487897, + "lon": -0.944953, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "scooter": "yes" + } + }, + { + "type": "node", + "id": 9545135112, + "lat": 46.1407352, + "lon": 3.4451382, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-02-26" + } + }, + { + "type": "node", + "id": 9547684657, + "lat": 48.1672573, + "lon": 7.2942702, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "socket:type": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9547684658, + "lat": 48.1653554, + "lon": 7.2993568, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "fee": "no", + "motorcar": "yes", + "socket:type": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9550005352, + "lat": 48.8791837, + "lon": 2.356337, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX10*04", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9550083307, + "lat": 47.8278947, + "lon": -3.2488847, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9550148423, + "lat": 43.6446445, + "lon": 1.5334666, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "operator": "Driveco", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9551347330, + "lat": 45.7660031, + "lon": 4.8445558, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Edgar Quinet", + "network:website": "https://grandlyon.izivia.com/", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY602D;MAT-008955", + "ref:EU:EVSE": "FR*GLY*PLYON7841", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9551347331, + "lat": 45.766056, + "lon": 4.8445457, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Edgar Quinet", + "network:website": "https://grandlyon.izivia.com/", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY602C;MAT-008954", + "ref:EU:EVSE": "FR*GLY*PLYON7831", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9551347332, + "lat": 45.766106, + "lon": 4.8445357, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Edgar Quinet", + "network:website": "https://grandlyon.izivia.com/", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY602B;MAT-008953", + "ref:EU:EVSE": "FR*GLY*PLYON7821", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9551347333, + "lat": 45.7661566, + "lon": 4.8445263, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Edgar Quinet", + "network:website": "https://grandlyon.izivia.com/", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY602A;MAT-008952", + "ref:EU:EVSE": "FR*GLY*PLYON7811", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9551766238, + "lat": 50.8727005, + "lon": 2.0672939, + "tags": { + "amenity": "charging_station", + "operator": "ALDI", + "operator:wikidata": "Q125054", + "operator:wikipedia": "en:Aldi" + } + }, + { + "type": "node", + "id": 9552159764, + "lat": 43.463433, + "lon": 1.3969455, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9554743216, + "lat": 46.4254918, + "lon": -1.4911067, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9555743629, + "lat": 43.7369219, + "lon": 2.5817013, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9556272697, + "lat": 46.1543576, + "lon": 4.1613247, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "source": "survey (2022-03-05)" + } + }, + { + "type": "node", + "id": 9556538499, + "lat": 43.4483545, + "lon": 6.6989726, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "150", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9558304033, + "lat": 48.7943787, + "lon": 2.3366903, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33 805 021 480", + "fee": "yes", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 9558304034, + "lat": 48.7856532, + "lon": 2.3289832, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33 805 021 480", + "fee": "yes", + "fixme": "Vérifier le nombre de bornes (2 ou 6 ?)", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "socket:type2": "2", + "socket:type2:output": "7.4 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 9558304035, + "lat": 48.7863031, + "lon": 2.3404503, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33 805 021 480", + "fee": "yes", + "fixme": "Vérifier le nombre de bornes (2, 6 ?)", + "motorcar": "yes", + "network": "La Borne Bleue", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SIPPEREC", + "socket:type2": "2", + "socket:type2:output": "7.4 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "website": "https://labornebleue.fr/" + } + }, + { + "type": "node", + "id": 9559096233, + "lat": 45.8274544, + "lon": 6.2020368, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 9559995211, + "lat": 48.6773334, + "lon": 2.1343827, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CPS", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*CPS*PCAPS412", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9560000223, + "lat": 49.0251172, + "lon": 1.1736972, + "tags": { + "access": "yes", + "amenity": "charging_station", + "name": "SIEGE 27 | 900.078", + "network": "SIEGE 27", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9560417386, + "lat": 43.6812465, + "lon": -1.0938426, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9561225515, + "lat": 45.243315, + "lon": -0.272705, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEER 17", + "parking:fee": "no", + "ref:EU:EVSE": "FR*SOD*S*MB17*3*1*_*_", + "scooter": "no", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "source": "data.gouv.fr:Etalab - 03/2022" + } + }, + { + "type": "node", + "id": 9562266010, + "lat": 43.6131156, + "lon": 1.4201271, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Révéo" + } + }, + { + "type": "node", + "id": 9562453562, + "lat": 45.7854026, + "lon": 4.7344248, + "tags": { + "amenity": "charging_station", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "network": "Izivia", + "operator": "Grand Lyon", + "ref": "CHB01A" + } + }, + { + "type": "node", + "id": 9562453564, + "lat": 45.7853807, + "lon": 4.7344026, + "tags": { + "amenity": "charging_station", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "network": "Izivia", + "operator": "Grand Lyon", + "ref": "CHB01B" + } + }, + { + "type": "node", + "id": 9565727076, + "lat": 43.1362172, + "lon": 5.7583101, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9568204314, + "lat": 42.8892252, + "lon": -0.1124484, + "tags": { + "amenity": "charging_station", + "name": "Reveo" + } + }, + { + "type": "node", + "id": 9568211495, + "lat": 42.890218, + "lon": -0.1156024, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Reveo" + } + }, + { + "type": "node", + "id": 9569136542, + "lat": 43.7104601, + "lon": -1.0565916, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Borne de recharge réservée à la clientèle de l'établissement Les Thermes." + } + }, + { + "type": "node", + "id": 9569180275, + "lat": 43.7149855, + "lon": -1.0486737, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "8", + "description": "Bornes de recharges réservées à la clientèle de l'Espace Thermal." + } + }, + { + "type": "node", + "id": 9569439548, + "lat": 50.5167686, + "lon": 1.6417085, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 9571056427, + "lat": 46.8053784, + "lon": 4.4320956, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Framatome Le Creusot Forge", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9571073042, + "lat": 45.758371, + "lon": 3.1310284, + "tags": { + "access": "private", + "amenity": "charging_station", + "amperage": "32", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "name": "Aubert & Duval La Pardieu", + "opening_hours": "24/7", + "socket:type2": "3", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9571073043, + "lat": 46.8074841, + "lon": 4.431527, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Sydel" + } + }, + { + "type": "node", + "id": 9573140343, + "lat": 48.675795, + "lon": 2.1715127, + "tags": { + "amenity": "charging_station", + "description": "deux bornes de 4 prises. 2x type 2 22kw et 2x prise domestique", + "fee": "no", + "operator": "avia", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 9574578779, + "lat": 47.2632623, + "lon": -2.23805, + "tags": { + "amenity": "charging_station", + "capacity": "45", + "name": "Intermarché", + "operator": "New Motion, Chargemap" + } + }, + { + "type": "node", + "id": 9574578780, + "lat": 47.2586786, + "lon": -2.2824923, + "tags": { + "amenity": "charging_station", + "capacity": "22", + "name": "Lidl", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl" + } + }, + { + "type": "node", + "id": 9574578781, + "lat": 47.2873836, + "lon": -2.2560159, + "tags": { + "amenity": "charging_station", + "capacity": "22", + "name": "Leclerc", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "operator:wikipedia": "fr:E.Leclerc" + } + }, + { + "type": "node", + "id": 9574578782, + "lat": 47.2880619, + "lon": -2.256694, + "tags": { + "amenity": "charging_station", + "capacity": "22", + "name": "leclerc", + "operator": "Leclerc", + "operator:wikidata": "Q1273376", + "operator:wikipedia": "fr:E.Leclerc" + } + }, + { + "type": "node", + "id": 9574703036, + "lat": 44.0919311, + "lon": 3.0656534, + "tags": { + "amenity": "charging_station", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault" + } + }, + { + "type": "node", + "id": 9577340822, + "lat": 49.0261133, + "lon": 1.1572791, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "SIEGE 27 | 900.080", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9578029768, + "lat": 44.0997044, + "lon": 3.0781944, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Mandarous", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 9578029769, + "lat": 44.1021218, + "lon": 3.0774382, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Bion-Malavagne", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 9580289554, + "lat": 46.7061494, + "lon": -2.331938, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9580480438, + "lat": 43.5223521, + "lon": 5.4199229, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9580819234, + "lat": 48.9738135, + "lon": 2.516667, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9581654680, + "lat": 43.371294, + "lon": 5.3558467, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*POTRP6CSGII", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9581870488, + "lat": 43.3537009, + "lon": 3.5303185, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34150001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9582241983, + "lat": 47.811356, + "lon": -3.3408442, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9582788521, + "lat": 50.368526, + "lon": 3.5020177, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H03*P59014001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9583304626, + "lat": 43.452835, + "lon": 5.4522763, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9583304627, + "lat": 43.4528165, + "lon": 5.4522521, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9583896740, + "lat": 46.1271032, + "lon": 3.396164, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "eborn", + "source": "survey", + "start_date": "2016", + "survey:date": "2022-03-12" + } + }, + { + "type": "node", + "id": 9586409065, + "lat": 45.1798469, + "lon": 0.7252462, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "syndicat départemental d'énergie (Sde24)" + } + }, + { + "type": "node", + "id": 9588139564, + "lat": 48.7785208, + "lon": 2.4813679, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9588696327, + "lat": 45.5037193, + "lon": 4.8578671, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Genevray", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Genevray", + "ref:EU:EVSE": "FR*SSD*PGENEVRAY38200*1", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9590868238, + "lat": 45.8353823, + "lon": 4.8450306, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "Izivia Grand Lyon", + "capacity": "2", + "network": "Izivia Grand Lyon", + "payment:debit_cards": "yes", + "ref": "FLS01B", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 9590868239, + "lat": 45.8354131, + "lon": 4.8449278, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "Izivia Grand Lyon", + "capacity": "2", + "network": "Izivia Grand Lyon", + "payment:debit_cards": "yes", + "ref": "FLS01A", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 9591723816, + "lat": 43.3416027, + "lon": 5.360216, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13215*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9592690675, + "lat": 48.1818149, + "lon": -0.12954, + "tags": { + "access": "yes", + "addr:street": "Place de la Gare", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SARTHE IRVE" + } + }, + { + "type": "node", + "id": 9592944034, + "lat": 47.8936882, + "lon": 1.8947913, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9592967035, + "lat": 47.8933718, + "lon": 1.8954999, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Paragon Mobility", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9593669222, + "lat": 45.737864, + "lon": 5.0155764, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "SYDER", + "not:operator:wikidata": "Q86671322", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SYDER", + "ref:EU:EVSE": "FR*SOD*S*SYDR*15*1*_*_" + } + }, + { + "type": "node", + "id": 9595533568, + "lat": 47.2890215, + "lon": -2.3925547, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9602049292, + "lat": 16.2522404, + "lon": -61.5893098, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9602067444, + "lat": 16.2522239, + "lon": -61.5892733, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9609175193, + "lat": 44.0950799, + "lon": 6.927915, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9609395929, + "lat": 44.0887885, + "lon": 6.8537496, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "description": "Gonflage et recharge pour cycles", + "fee": "no", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 9609547733, + "lat": 48.7662113, + "lon": 2.4651861, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9609547734, + "lat": 48.7661273, + "lon": 2.4650373, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9609985919, + "lat": 47.994812, + "lon": 0.1896759, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Au niveau -1 du parking, tout de suite à droite dans l'entrée du parking", + "fee": "yes", + "level": "-1", + "payment:chargemap_pass": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9610384664, + "lat": 47.3423121, + "lon": 0.6162006, + "tags": { + "amenity": "charging_station", + "description": "2 chargeurs" + } + }, + { + "type": "node", + "id": 9610739810, + "lat": 43.6079628, + "lon": 5.0037075, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Simone", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SMED 13", + "ref:EU:EVSE": "FR*S13*P13063*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9611089612, + "lat": 47.1230786, + "lon": -0.9940243, + "tags": { + "addr:housenumber": "21", + "addr:street": "21 rue du Tamarin", + "amenity": "charging_station", + "description": "Borne de recharge, 0,2€/kwh", + "name": "Borne de recharge", + "website": "www.ouestcharge.fr" + } + }, + { + "type": "node", + "id": 9612583690, + "lat": 44.8287879, + "lon": -0.6708954, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9620362807, + "lat": 46.9035674, + "lon": 6.3321594, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9621307787, + "lat": 49.110566, + "lon": 6.1774645, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé", + "opening_hours": "24/7", + "operator": "BOUYGUES ENERGIES & SERVICES", + "owner": "Ville de Metz", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9625836720, + "lat": 47.0919116, + "lon": 0.0041, + "tags": { + "amenity": "charging_station", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9626813549, + "lat": 46.1622967, + "lon": 4.1684083, + "tags": { + "amenity": "charging_station", + "brand": "Hager", + "capacity": "2", + "source": "survey (2022-03-31)", + "source:position": "Ortho HR IGN 2022" + } + }, + { + "type": "node", + "id": 9626813550, + "lat": 46.1622245, + "lon": 4.1682324, + "tags": { + "amenity": "charging_station", + "brand": "Hager", + "capacity": "2", + "source": "survey (2022-03-31)", + "source:position": "Ortho HR IGN 2022" + } + }, + { + "type": "node", + "id": 9628796014, + "lat": 43.2727854, + "lon": 5.3900864, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "La Recharge" + } + }, + { + "type": "node", + "id": 9629322810, + "lat": 48.6774491, + "lon": 2.1326008, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CPS", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*CPS*PCAPS312", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9630820012, + "lat": 43.697813, + "lon": 7.2635569, + "tags": { + "amenity": "charging_station", + "wikimedia_commons": "File:Recharge de voiture électrique allée Édith Piaf (Nice) en mars 2022.jpg" + } + }, + { + "type": "node", + "id": 9630958364, + "lat": 45.8432315, + "lon": 5.7794134, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "operator": "Bugey sud" + } + }, + { + "type": "node", + "id": 9631342911, + "lat": 43.5828468, + "lon": 5.0036131, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13063*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9634362854, + "lat": 45.1887792, + "lon": 5.7389612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Ze-Watt", + "ref": "ZW007922", + "socket:type2": "2", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 9637533722, + "lat": 48.7856228, + "lon": 2.4529757, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9639079681, + "lat": 48.4384796, + "lon": 0.4245258, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "Pervenchères | Le Bourg", + "note": "2 kw et 18 kw", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9640308489, + "lat": 48.7892873, + "lon": 7.9845771, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "ALDI", + "operator:wikidata": "Q125054", + "operator:wikipedia": "en:Aldi", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9641389457, + "lat": 45.6789554, + "lon": 4.776192, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9642694061, + "lat": 45.5721662, + "lon": 5.9527755, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "22", + "fee": "yes", + "name": "Renault", + "operator": "Renault", + "operator:wikidata": "Q6686", + "operator:wikipedia": "en:Renault" + } + }, + { + "type": "node", + "id": 9642857517, + "lat": 42.5501606, + "lon": 3.0467728, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "argeles", + "name:en": "argeles charging station", + "name:fr": "argeles charging station", + "opening_hours": "24/7", + "operator": "reveo" + } + }, + { + "type": "node", + "id": 9643785471, + "lat": 45.7171873, + "lon": 4.8146347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "GRAND LYON", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "ref:EU:EVSE": "FR*GLY*PLYON13011", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9646024737, + "lat": 49.225631, + "lon": 6.0175048, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9646884492, + "lat": 48.7945185, + "lon": 2.4444614, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9648190112, + "lat": 43.2770287, + "lon": 5.4006064, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Ford Marseille", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Ford Marseille", + "ref:EU:EVSE": "FR*G39*PMAURINFORD13010*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9648190113, + "lat": 43.2767059, + "lon": 5.4013735, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "no", + "motorcar": "yes", + "network": "JLR - AAV Marseille", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "JLR - AAV Marseille", + "ref:EU:EVSE": "FR*G41*PJLRAAV13010*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9648863252, + "lat": 48.532706, + "lon": 2.2901167, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9648863253, + "lat": 48.5327433, + "lon": 2.2901545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9652962816, + "lat": 48.0265964, + "lon": -4.554992, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "operator:wikipedia": "en:Lidl" + } + }, + { + "type": "node", + "id": 9653341217, + "lat": 44.5421112, + "lon": 4.7477527, + "tags": { + "amenity": "charging_station", + "name:en": "lidl free charging station" + } + }, + { + "type": "node", + "id": 9653346108, + "lat": 47.1242138, + "lon": 2.4028369, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9653613112, + "lat": 48.6109225, + "lon": 2.3051732, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "description": "2x 22kva", + "fee": "yes", + "operator": "sodetrel", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9654684780, + "lat": 48.822144, + "lon": 2.422138, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Metropolis", + "source": "survey" + } + }, + { + "type": "node", + "id": 9655437017, + "lat": 43.3936172, + "lon": 3.6641588, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Révéo", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Sète - Corniche de Neubeurg", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "ref": "FR*S34*E34301*007*1;FR*S34*E34301*007*2", + "ref:EU:EVSE": "FR*S34*P34301*007", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 9655586498, + "lat": 43.5340176, + "lon": 5.4611269, + "tags": { + "amenity": "charging_station", + "name": "La Recharge" + } + }, + { + "type": "node", + "id": 9655780417, + "lat": 43.2290483, + "lon": 3.0506967, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "brand": "Lidl", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "24/7", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "scooter": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9655971017, + "lat": 42.6708193, + "lon": 2.8573184, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "name": "cahors emobility perpignan", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S66*P66136001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9656023017, + "lat": 42.54563, + "lon": 3.0305341, + "tags": { + "amenity": "charging_station", + "name": "(ferme) lidl charging station", + "name:en": "(closed) lidl charging station" + } + }, + { + "type": "node", + "id": 9656380337, + "lat": 50.110011, + "lon": 1.4552603, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "1 prise 32a 22KW ou 16A mkw", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "xfm.fr/MGK1", + "ref:EU:EVSE": "FR*S80*PAULT11NOV1918", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9656683972, + "lat": 45.1447223, + "lon": 0.5237814, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "description": "Carte Leclerc gratuite", + "fee": "no", + "motorcar": "yes", + "operator": "Centre E. Leclerc", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9656742022, + "lat": 48.3762962, + "lon": 7.591479, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "ALDI", + "operator:wikidata": "Q125054" + } + }, + { + "type": "node", + "id": 9658045971, + "lat": 44.0812697, + "lon": -1.2607977, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9659178317, + "lat": 43.1097646, + "lon": -0.0365905, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9659315018, + "lat": 49.035907, + "lon": 7.6871975, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9660805822, + "lat": 45.7529544, + "lon": 4.8548351, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon | Place Bir-Hakeim", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY308A;MAT-008855", + "ref:EU:EVSE": "FR*GLY*PLYON3112", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9660992527, + "lat": 48.7999118, + "lon": 2.184334, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "operator": "Izivia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9661468657, + "lat": 45.6682117, + "lon": 4.7556892, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6" + } + }, + { + "type": "node", + "id": 9663208744, + "lat": 43.7580182, + "lon": 5.5074047, + "tags": { + "amenity": "charging_station", + "operator": "Vauclus'elec" + } + }, + { + "type": "node", + "id": 9663208745, + "lat": 43.7580755, + "lon": 5.5073775, + "tags": { + "amenity": "charging_station", + "operator": "Vauclus'elec" + } + }, + { + "type": "node", + "id": 9665007223, + "lat": 45.2022329, + "lon": 4.5535615, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "SDE07", + "owner": "SDE07", + "ref:EU:EVSE": "FR*S07*P07347*A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9666468291, + "lat": 16.2520581, + "lon": -61.5548404, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9666664308, + "lat": 48.1206358, + "lon": -1.1783289, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9670019457, + "lat": 47.3020569, + "lon": -2.2092307, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Auchan charge" + } + }, + { + "type": "node", + "id": 9670086208, + "lat": 50.2226, + "lon": 3.8489899, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "ref:EU:EVSE": "FR*H02*P59467*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9670202989, + "lat": 45.0383335, + "lon": 0.355086, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "motorcar": "yes", + "operator": "Intermarché", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9670472609, + "lat": 48.0782245, + "lon": -0.752344, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9670499879, + "lat": 16.2520164, + "lon": -61.5411527, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9671240622, + "lat": 45.8963173, + "lon": 0.9146135, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "manufacturer": "Legrand", + "model": "Greenup 0 590 15", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc Saint Junien", + "payment:credit_cards": "yes", + "phone": "+33 3 69 24 67 32", + "ref:EU:EVSE": "FR*LE2*PHUD0LV94TU", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9671263243, + "lat": 45.8906032, + "lon": 0.9043715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Commune de Saint-Junien", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 9671558620, + "lat": 45.7600943, + "lon": 4.9080352, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 9671885985, + "lat": 43.3394925, + "lon": 5.356939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13215*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9672782110, + "lat": 42.701148, + "lon": 2.8219628, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "operator:wikipedia": "fr:Bouygues Énergies & Services", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805021782", + "ref:EU:EVSE": "FR*S66*P66012001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9674160107, + "lat": 45.3755897, + "lon": 6.5059073, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9674786235, + "lat": 48.8331614, + "lon": 2.4896029, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674786236, + "lat": 48.833119, + "lon": 2.4896451, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674786237, + "lat": 48.8330827, + "lon": 2.489681, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674786238, + "lat": 48.8330501, + "lon": 2.4897177, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674786239, + "lat": 48.8330049, + "lon": 2.4897608, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674786240, + "lat": 48.8329583, + "lon": 2.489806, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674786241, + "lat": 48.832933, + "lon": 2.4898325, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Sipperec" + } + }, + { + "type": "node", + "id": 9674898948, + "lat": 45.7517999, + "lon": 5.1441785, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "2", + "fee": "yes", + "network": "Freshmile", + "operator": "EVBox", + "operator:wikidata": "Q28406392", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9674898949, + "lat": 45.7518616, + "lon": 5.1441693, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "2", + "fee": "yes", + "network": "Freshmile", + "operator": "EVBox", + "operator:wikidata": "Q28406392", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9674898950, + "lat": 45.7519207, + "lon": 5.1441676, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "2", + "fee": "yes", + "network": "Freshmile", + "operator": "EVBox", + "operator:wikidata": "Q28406392", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9675075250, + "lat": 50.9522904, + "lon": 1.8544704, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "operator": "citelum", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 9675095202, + "lat": 47.0671077, + "lon": -0.8441492, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9675566051, + "lat": 49.0256846, + "lon": 2.7439065, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Montgé-en-Goële", + "network": "Ecocharge77", + "opening_hours": "24/7", + "operator": "Ecocharge77", + "owner": "SDESM", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "Survey", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9676833439, + "lat": 48.0568292, + "lon": 0.2546965, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "socket:chademo": "1", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 9678417882, + "lat": 43.2251181, + "lon": 3.2454938, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Sandaya Camping" + } + }, + { + "type": "node", + "id": 9678427174, + "lat": 50.6208833, + "lon": 2.6844689, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes Flandre-Lys", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H09*P62502001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9681816454, + "lat": 43.5358532, + "lon": 1.4806796, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Aldi", + "operator:wikidata": "Q125054" + } + }, + { + "type": "node", + "id": 9682622228, + "lat": 49.0468573, + "lon": 7.7744323, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Bosch eBike Systems", + "name": "Bosch eBike Systems", + "operator": "Bosch eBike Systems", + "operator:wikidata": "Q234021", + "operator:wikipedia": "en:Robert Bosch GmbH" + } + }, + { + "type": "node", + "id": 9683179817, + "lat": 47.2102874, + "lon": 0.0769279, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Station de recharge batterie vélos électriques", + "name:en": "Ebike battery charging station" + } + }, + { + "type": "node", + "id": 9683616193, + "lat": 42.72282, + "lon": 2.8877172, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9683643551, + "lat": 45.5208193, + "lon": 4.8678611, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9684884114, + "lat": 48.4525663, + "lon": -2.0425309, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9685434971, + "lat": 49.1581396, + "lon": -0.922813, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9685512483, + "lat": 51.0165332, + "lon": 2.3561242, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Ford Dunkerque", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Ford Dunkerque", + "ref:EU:EVSE": "FR*G39*PDUGARDINFORD59140*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9685512484, + "lat": 51.0166109, + "lon": 2.3569302, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "network": "Kia Dunkerque", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Kia Dunkerque", + "ref:EU:EVSE": "FR*G42*PEURAUTOKIA59640*1", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9685512485, + "lat": 51.0165334, + "lon": 2.3569679, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "motorcar": "yes", + "network": "Fiat Dunkerque", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Fiat Dunkerque", + "ref:EU:EVSE": "FR*G47*PEURAUTOFIAT59640*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9685512486, + "lat": 51.0165872, + "lon": 2.3569422, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "motorcar": "yes", + "network": "OPEL Dunkerque", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "OPEL Dunkerque", + "ref:EU:EVSE": "FR*G44*PEURAUTOOPEL59640*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9686074989, + "lat": 44.3045137, + "lon": 4.6882558, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Vélo", + "operator": "Mairie" + } + }, + { + "type": "node", + "id": 9686385830, + "lat": 43.2134839, + "lon": 5.5380931, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "larecharge" + } + }, + { + "type": "node", + "id": 9687570089, + "lat": 43.6571244, + "lon": 7.1991385, + "tags": { + "amenity": "charging_station", + "description": "niveau P0 allée A A34-A52", + "fee": "no", + "name": "niveau P0 allée A A34-A52" + } + }, + { + "type": "node", + "id": 9687735355, + "lat": 48.9606824, + "lon": 0.9414826, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "name": "SIEGE 27 | 900.106", + "network": "SIEGE 27", + "opening_hours": "24/7", + "operator": "SGA Mobility", + "owner": "SIEGE 27", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9687814956, + "lat": 48.0333708, + "lon": 0.1796923, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "26", + "fee": "yes", + "opening_hours": "Mo-Sa 09:00-20:30", + "payment:chargemap_pass": "yes", + "socket:schuko": "26", + "socket:type2": "26" + } + }, + { + "type": "node", + "id": 9688448770, + "lat": 43.9963601, + "lon": 7.146984, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Prise de Nice" + } + }, + { + "type": "node", + "id": 9689237998, + "lat": 45.920804, + "lon": 4.8823562, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.17 €/kWh + 0,01 €/min", + "fee": "yes", + "opening_hours": "24/7", + "operator": "RSE", + "payment:app": "yes", + "payment:contactless": "yes", + "ref": "01105*A*B1", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9689362311, + "lat": 44.0631199, + "lon": 7.6137493, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CARF", + "ref:EU:EVSE": "FR*A22*P06162*001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9689693724, + "lat": 43.9560915, + "lon": -1.3574231, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9690438551, + "lat": 44.9446612, + "lon": -0.6189149, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9692016337, + "lat": 44.394664, + "lon": 0.6886794, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9694808390, + "lat": 46.4346309, + "lon": -1.6584626, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "description": "4 prises domestiques", + "fee": "no", + "operator": "Plus de Bornes" + } + }, + { + "type": "node", + "id": 9695084117, + "lat": 45.1859801, + "lon": 5.7135777, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Alizé", + "survey:date": "2022-04-26" + } + }, + { + "type": "node", + "id": 9695084118, + "lat": 45.1859498, + "lon": 5.7135759, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Alizé", + "survey:date": "2022-04-26" + } + }, + { + "type": "node", + "id": 9695084217, + "lat": 45.1859631, + "lon": 5.7135763, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Alizé", + "survey:date": "2022-04-26" + } + }, + { + "type": "node", + "id": 9695093344, + "lat": 49.1188582, + "lon": -0.1740011, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "description": "Carte de fidélité E.Leclerc à scanner sur la borne.", + "fee": "no", + "manufacturer": "Lafon", + "model": "Pulse 22 WL", + "motorcar": "yes", + "name": "La borne E.Leclerc", + "opening_hours": "Mo-Fr 09:00-20:00; Sa 08:30-20:00", + "operator": "E.Leclerc", + "scooter": "yes", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9695889014, + "lat": 50.1058661, + "lon": 1.8315294, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PABBEVIROY", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9696958558, + "lat": 48.2530138, + "lon": 7.3987093, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "22", + "fee": "no", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9697482306, + "lat": 49.9186331, + "lon": 1.0871359, + "tags": { + "amenity": "charging_station", + "name": "Renault", + "operator": "Renault", + "operator:wikidata": "Q6686" + } + }, + { + "type": "node", + "id": 9697875476, + "lat": 43.1302868, + "lon": 5.9201981, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "50cts/kW", + "fee": "yes", + "name": "Borne de recharge E-Born Carnot", + "operator": "E-Born", + "payment:badge": "yes", + "payment:credit_cards": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 9700403595, + "lat": 49.760995, + "lon": 0.3662937, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDE76" + } + }, + { + "type": "node", + "id": 9700670231, + "lat": 43.3341211, + "lon": 3.2798581, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no", + "source": "Jeu de données (data.gouv.fr) 62694082123dba06a8d5cac4 en date du 27/04/2022", + "start_date": "2022-04-21" + } + }, + { + "type": "node", + "id": 9701561465, + "lat": 48.8589113, + "lon": 2.3797926, + "tags": { + "amenity": "charging_station", + "operator": "Belib'" + } + }, + { + "type": "node", + "id": 9701561468, + "lat": 48.8587543, + "lon": 2.3799227, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Clem'" + } + }, + { + "type": "node", + "id": 9705216574, + "lat": 48.7660447, + "lon": 2.2904544, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "operator": "Metropolis" + } + }, + { + "type": "node", + "id": 9705523216, + "lat": 44.7827642, + "lon": -0.6530139, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9705759326, + "lat": 45.1428133, + "lon": 4.4356837, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDE43 - Haute-Loire", + "ref:EU:EVSE": "FR*EBN*PFHJTIMLKOG", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9706977729, + "lat": 45.8348531, + "lon": -0.6804292, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Parking du Saint-Alexis" + } + }, + { + "type": "node", + "id": 9707101114, + "lat": 43.4516814, + "lon": 5.4701762, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13041*004", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9707366437, + "lat": 48.8793053, + "lon": 2.4156612, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "La borne bleu", + "operator": "La borne bleu" + } + }, + { + "type": "node", + "id": 9707366438, + "lat": 48.8792412, + "lon": 2.4156782, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "La borne bleu", + "operator": "La borne bleu" + } + }, + { + "type": "node", + "id": 9709328740, + "lat": 49.1835264, + "lon": -0.309461, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Colombelles, Rue de la Coopérative", + "network": "MobiSDEC", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 9709413462, + "lat": 46.7884824, + "lon": -2.0328519, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9709741624, + "lat": 48.801942, + "lon": 2.1717538, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "24", + "operator": "Segeif" + } + }, + { + "type": "node", + "id": 9709766888, + "lat": 50.6336484, + "lon": 2.9674303, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "ZE Watt - Galerie Marchande Auchan", + "operator": "ZE Watt", + "socket:schuko": "2", + "socket:schuko:output": "2 kW", + "socket:type2": "2", + "socket:type2:output": "18 kW" + } + }, + { + "type": "node", + "id": 9709849969, + "lat": 49.8749846, + "lon": 2.2546622, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "email": "support@alizecharge.fr", + "fee": "yes", + "level": "3", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Indigo France", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*P07*P80021001", + "socket:type2": "4", + "socket:typee": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 9710745086, + "lat": 46.7864511, + "lon": -2.0290228, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9711039669, + "lat": 48.8312763, + "lon": 2.2663449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9711039670, + "lat": 48.8313335, + "lon": 2.2662333, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9711039671, + "lat": 48.8313955, + "lon": 2.2661173, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9711258923, + "lat": 49.1276656, + "lon": -0.1657341, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "Atomelec", + "model": "e-totem", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Argences, Rue Gueritot", + "network": "MobiSDEC", + "note": "Identifiant EVSE inconnu", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "scooter": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 9711576490, + "lat": 49.1465516, + "lon": -0.254826, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "manufacturer": "e-Totem", + "model": "e-Premium", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Cagny, Allée Saint Germain", + "network": "MobiSDEC", + "note": "Identifiant EVSE inconnu", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SDEC Énergies", + "scooter": "yes", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2": "1", + "socket:type2:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 9711719267, + "lat": 50.1042812, + "lon": 1.8324842, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PABBEVILPONT", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9711742346, + "lat": 43.4297375, + "lon": 5.436699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13107*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9712015916, + "lat": 46.1563755, + "lon": 3.3918719, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "source": "survey", + "survey:date": "2022-04-10" + } + }, + { + "type": "node", + "id": 9712039618, + "lat": 46.1561107, + "lon": 3.3924257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schindler Electric", + "motorcar": "yes", + "operator": "Lidl", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-04-10" + } + }, + { + "type": "node", + "id": 9712039619, + "lat": 46.1561584, + "lon": 3.3924322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schindler Electric", + "motorcar": "yes", + "operator": "Lidl", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-04-10" + } + }, + { + "type": "node", + "id": 9712039620, + "lat": 46.1562062, + "lon": 3.3924387, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schindler Electric", + "motorcar": "yes", + "operator": "Lidl", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-04-10" + } + }, + { + "type": "node", + "id": 9712331127, + "lat": 45.2757254, + "lon": 4.8256502, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Saint-Rambert d’Albon Ouest", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9713128073, + "lat": 50.5154243, + "lon": 2.6225992, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Actipolis Béthune", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PO19SAEMHWV", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9713349603, + "lat": 41.6063558, + "lon": 9.2778445, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9713349604, + "lat": 41.6062976, + "lon": 9.2778306, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9713349605, + "lat": 41.6062477, + "lon": 9.2778176, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9713349606, + "lat": 41.6062022, + "lon": 9.2778057, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9713349607, + "lat": 41.606159, + "lon": 9.2777947, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9714418495, + "lat": 46.5827851, + "lon": 1.9995758, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl La Châtre" + } + }, + { + "type": "node", + "id": 9717668336, + "lat": 48.619508, + "lon": 7.4910571, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Freshmiles", + "opening_hours": "24/7", + "operator": "Freshmiles", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9717668337, + "lat": 48.538517, + "lon": 7.5029748, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Freshmiles", + "opening_hours": "24/7", + "operator": "Freshmiles", + "scooter": "yes", + "socket:schuko": "6", + "socket:type2": "6", + "socket:typee": "6" + } + }, + { + "type": "node", + "id": 9719773330, + "lat": 45.0442722, + "lon": 6.3010249, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "efacec" + } + }, + { + "type": "node", + "id": 9720073991, + "lat": 43.5802909, + "lon": 5.000883, + "tags": { + "access": "permit", + "amenity": "charging_station", + "fee": "yes", + "name": "La Métropole Mobilité", + "operator": "application my evzen" + } + }, + { + "type": "node", + "id": 9722252856, + "lat": 43.780737, + "lon": 6.3431011, + "tags": { + "amenity": "charging_station", + "description": "2x 22kW", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9723656220, + "lat": 48.743685, + "lon": 2.4345151, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "SMOYS" + } + }, + { + "type": "node", + "id": 9723731413, + "lat": 42.2632953, + "lon": 9.5474325, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9723731414, + "lat": 42.2632804, + "lon": 9.5474284, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9724781479, + "lat": 43.4350037, + "lon": 5.4649676, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13041*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9725280456, + "lat": 48.8304982, + "lon": 2.8113602, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "authentication": "no", + "capacity": "1", + "fee": "no", + "parking_space": "charging", + "socket": "domestic", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9725280457, + "lat": 48.8305328, + "lon": 2.8113553, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "authentication": "no", + "capacity": "1", + "fee": "no", + "parking_space": "charging", + "socket": "domestic", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9725280458, + "lat": 48.8306126, + "lon": 2.8120589, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "authentication": "no", + "capacity": "1", + "fee": "no", + "parking_space": "charging", + "socket": "domestic", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9725280459, + "lat": 48.8305893, + "lon": 2.8120583, + "tags": { + "amenity": "charging_station", + "amperage": "16", + "authentication": "no", + "capacity": "1", + "fee": "no", + "parking_space": "charging", + "socket": "domestic", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9726250673, + "lat": 47.3439639, + "lon": 1.1841765, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "operator": "SIDELC", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type2:amperage": "48" + } + }, + { + "type": "node", + "id": 9726481956, + "lat": 47.8321577, + "lon": -0.6867686, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9727774710, + "lat": 43.3189495, + "lon": 1.9529376, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11076001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9730043599, + "lat": 43.3986394, + "lon": 5.3664054, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13106*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9731037941, + "lat": 47.6414277, + "lon": 6.8611382, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2022-05-10" + } + }, + { + "type": "node", + "id": 9731046329, + "lat": 47.6414233, + "lon": 6.8612656, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2022-05-10" + } + }, + { + "type": "node", + "id": 9731054387, + "lat": 44.7991588, + "lon": 2.0790747, + "tags": { + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Latronquière - Place du foirail", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46160*002", + "scooter": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9732051013, + "lat": 43.421497, + "lon": 5.2294603, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9732053620, + "lat": 48.7954676, + "lon": 2.0535696, + "tags": { + "access": "customers", + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:rfid_card": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9732289474, + "lat": 49.27497, + "lon": 2.4675016, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Mouv'Oise", + "ref:EU:EVSE": "FR*S60*PCPPCVJ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9732638778, + "lat": 44.2055782, + "lon": -1.2207523, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "description": "4 bornes électrique disponibles pour les clients avec 8 points de charges\nEmplacements à l'abri de la pluie. \nPour les utiliser, il faut se rendre à l'accueil du Leclerc.", + "fee": "yes", + "name": "Bornes de recharge du Leclerc de Mimizan" + } + }, + { + "type": "node", + "id": 9734173103, + "lat": 48.6405594, + "lon": -2.2484285, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9735396897, + "lat": 44.6069663, + "lon": 3.969265, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9735430830, + "lat": 44.2922767, + "lon": -0.2609407, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9735896863, + "lat": 43.410779, + "lon": 5.3093602, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13071*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9737184228, + "lat": 43.3568825, + "lon": 5.3574153, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9737212437, + "lat": 48.7955128, + "lon": 2.0535543, + "tags": { + "access": "customers", + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:rfid_card": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9737212438, + "lat": 48.7955596, + "lon": 2.0535385, + "tags": { + "access": "customers", + "amenity": "charging_station", + "amperage": "32", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:rfid_card": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9737269928, + "lat": 43.2919585, + "lon": 5.358533, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13207*004", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9737269929, + "lat": 43.2907079, + "lon": 5.3662193, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13207*005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9737269930, + "lat": 43.287572, + "lon": 5.3736607, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13206*003", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9737269931, + "lat": 43.2878819, + "lon": 5.379076, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13206*004", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9737269932, + "lat": 43.284685, + "lon": 5.3882257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13206*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9737467360, + "lat": 48.9198854, + "lon": 2.3734067, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "4", + "charge": "0.44 EUR/kWh", + "email": "help@go-electra.com", + "fee": "yes", + "hgv": "no", + "maxstay": "120 minutes", + "motorcar": "yes", + "name": "Electra Aubervilliers - Lab Village mobilité", + "network": "Electra", + "operator": "Electra", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "yes", + "payment:cash": "no", + "payment:contactless": "yes", + "payment:membership_card": "no", + "phone": "+33 1 56 65 99 99", + "scooter": "no", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNDM0N2QxZDAtM2NjNi0xMWVjLTkzOWYtNGIwOWY2NDZhZWVl" + } + }, + { + "type": "node", + "id": 9738298637, + "lat": 48.5793336, + "lon": 6.5170815, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9738298638, + "lat": 48.5793414, + "lon": 6.517044, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9739092731, + "lat": 48.621021, + "lon": 7.0051233, + "tags": { + "access": "customers", + "addr:street": "Voie de Parking X", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "no", + "operator": "Center Parcs", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9741119310, + "lat": 50.2692248, + "lon": 1.5900366, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "name": "IRVE80", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref": "ID:HDGS2", + "ref:EU:EVSE": "FR*S80*PXRQKGG", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 9741623804, + "lat": 48.6560759, + "lon": 3.0794337, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9744130086, + "lat": 46.129059, + "lon": 3.4163372, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "IES Synergy", + "model": "Keywatt", + "motorcar": "yes", + "source": "survey", + "start_date": "2022-05", + "survey:date": "2022-05-07" + } + }, + { + "type": "node", + "id": 9748269092, + "lat": 48.6480294, + "lon": -2.8240805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "ouest charge" + } + }, + { + "type": "node", + "id": 9749671961, + "lat": 45.155151, + "lon": 5.319207, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SEDI - Isère", + "ref:EU:EVSE": "FR*EBN*PZW7N7BPXFX", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9751936049, + "lat": 43.3143779, + "lon": -0.3573133, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9751936050, + "lat": 43.3144357, + "lon": -0.3573039, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9751936051, + "lat": 43.3144839, + "lon": -0.3572963, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9751936052, + "lat": 43.3145334, + "lon": -0.3572755, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9752628344, + "lat": 44.164808, + "lon": 3.8414768, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 9754499608, + "lat": 50.6625966, + "lon": 2.4374834, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "owner": "Syndicat intercommunal d'énergie de Flandre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H14*P59087001", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9754520326, + "lat": 50.6626748, + "lon": 2.435411, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "owner": "Syndicat intercommunal d'énergie de Flandre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H14*P59087002", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9760379494, + "lat": 41.721226, + "lon": 9.1482222, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9761359337, + "lat": 43.0948774, + "lon": 6.0772353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 9763617232, + "lat": 43.2905335, + "lon": -0.4047082, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9763954648, + "lat": 45.6205183, + "lon": -1.0330288, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "Borne de recharge pour véhicules électriques", + "operator": "SDEER 17" + } + }, + { + "type": "node", + "id": 9763954649, + "lat": 45.625176, + "lon": -1.0181429, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "Borne de recharge pour véhicules électriques", + "operator": "SDEER 17" + } + }, + { + "type": "node", + "id": 9764064095, + "lat": 47.9484078, + "lon": 5.0069002, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9764861398, + "lat": 48.5413994, + "lon": -2.9680526, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Ouest Charge Charging Station", + "operator": "Ouest Charge", + "payment:carte_bleue": "yes" + } + }, + { + "type": "node", + "id": 9766658338, + "lat": 42.6429018, + "lon": 2.8778635, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9766658339, + "lat": 42.6436637, + "lon": 2.8788186, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9766684630, + "lat": 43.338284, + "lon": -0.3804501, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9766929901, + "lat": 43.6230996, + "lon": 7.068701, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "Dream Energy" + } + }, + { + "type": "node", + "id": 9768567652, + "lat": 47.6294291, + "lon": 6.1288921, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "no", + "maxstay": "24 hours", + "name": "Parking du Lac", + "operator": "freshmile", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "wikidata": "Q111209120", + "wikipedia": "fr:Freshmile Services" + } + }, + { + "type": "node", + "id": 9769562397, + "lat": 48.5912658, + "lon": 7.7434687, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "capacity": "3", + "manufacturer": "Alpitronic", + "maxweight": "355 kg", + "model": "HYC_150", + "serial_number": "21BZ0967A", + "start_date": "2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9769748118, + "lat": 49.6379911, + "lon": -1.6218333, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9769762788, + "lat": 47.3003164, + "lon": -1.4984947, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "name": "Super U - Carquefou" + } + }, + { + "type": "node", + "id": 9770242917, + "lat": 49.5652313, + "lon": -1.844233, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9770375784, + "lat": 45.1545164, + "lon": 5.319293, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "6", + "fee": "no", + "motorcar": "no", + "name": "Borne de recharge VAE du champ de Mars", + "operator": "SMVIC", + "scooter": "no" + } + }, + { + "type": "node", + "id": 9772092982, + "lat": 47.9791832, + "lon": 3.381705, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 9773437912, + "lat": 48.5129719, + "lon": 0.3533144, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9774551153, + "lat": 48.989826, + "lon": 3.3672747, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "USEDA", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9774594904, + "lat": 48.5988734, + "lon": 2.6816632, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9775473561, + "lat": 42.1696139, + "lon": 9.165914, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "E-motum", + "operator": "E-motum", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 9776934299, + "lat": 48.7770906, + "lon": 1.8101559, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "sey" + } + }, + { + "type": "node", + "id": 9780980269, + "lat": 48.6429266, + "lon": 2.0911632, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9781021238, + "lat": 44.4427885, + "lon": 1.4343771, + "tags": { + "amenity": "charging_station", + "operator": "REVEO" + } + }, + { + "type": "node", + "id": 9781035730, + "lat": 45.0293986, + "lon": 5.3273394, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9781115427, + "lat": 51.0212314, + "lon": 2.3593302, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Volvo Dunkerque - V Motors", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Volvo Dunkerque - V Motors", + "ref:EU:EVSE": "FR*G46*PEUROPAUTOVOLVO59640*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9781115428, + "lat": 51.0214692, + "lon": 2.3593983, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Hyundai Dunkerque - H Motors", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Hyundai Dunkerque - H Motors", + "ref:EU:EVSE": "FR*G40*PEUROPAUTOHYUNDAI59640*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9781208587, + "lat": 47.3314865, + "lon": 2.8364671, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9784591105, + "lat": 46.0809422, + "lon": 6.7267165, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "fee": "no", + "name": "e-bike Bosch", + "operator": "Sherpa", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9785994450, + "lat": 43.549969, + "lon": 5.0309906, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MAMP", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Aix-Marseille-Provence", + "ref:EU:EVSE": "FR*M13*P13092*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9786847897, + "lat": 48.8739965, + "lon": 2.2239485, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 9787539444, + "lat": 45.8395006, + "lon": 6.215691, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9787708048, + "lat": 47.2493773, + "lon": -1.6146363, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9788411541, + "lat": 45.1660626, + "lon": 4.8218507, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 9788411542, + "lat": 45.1660763, + "lon": 4.8218393, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 9789192912, + "lat": 46.8380985, + "lon": -0.4968421, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Séolis" + } + }, + { + "type": "node", + "id": 9790633346, + "lat": 48.960123, + "lon": 2.9500859, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Effia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9790633347, + "lat": 48.9601225, + "lon": 2.9500162, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Effia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9790633348, + "lat": 48.9601221, + "lon": 2.9499485, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Effia", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9791175803, + "lat": 48.8555664, + "lon": 2.3150384, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "network": "Belib'" + } + }, + { + "type": "node", + "id": 9791180845, + "lat": 47.5153824, + "lon": 6.796587, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9792084981, + "lat": 49.1797976, + "lon": 3.1234451, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fixme": "en mai 2022, borne non fonctionnelle", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9792342703, + "lat": 48.4517386, + "lon": 6.7440689, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9793365187, + "lat": 45.7130493, + "lon": 4.8068064, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "GRAND LYON", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "ref:EU:EVSE": "FR*GLY*PLYON5112", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9793365188, + "lat": 45.7130046, + "lon": 4.8069027, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "GRAND LYON", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "ref:EU:EVSE": "FR*GLY*PLYON5111", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9795524779, + "lat": 44.2309768, + "lon": 5.8557949, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9795546411, + "lat": 43.8094284, + "lon": 4.9989794, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9796203901, + "lat": 43.4350727, + "lon": 6.8095452, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "operator:wikipedia": "en:ChargePoint" + } + }, + { + "type": "node", + "id": 9796422418, + "lat": 46.8124404, + "lon": 1.6745954, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "5€ forfaitaire", + "fee": "yes", + "note": "1 prise type 2 22kVA\n1 prise type 3C 22kVA\n2 prises domestiques", + "operator": "Chargelec 36", + "payment:credit_cards": "yes", + "website": "https://www.chargelec36.com/station/index" + } + }, + { + "type": "node", + "id": 9796422419, + "lat": 46.8124384, + "lon": 1.6746584, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "5€ forfaitaire", + "covered": "no", + "fee": "yes", + "note": "1 prise type 2 22kVA\n1 prise type 3C 22kVA\n2 prises domestiques", + "operator": "SDEI Chargelec 36", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9796527762, + "lat": 48.1291409, + "lon": -1.697112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SDE35" + } + }, + { + "type": "node", + "id": 9796746891, + "lat": 47.5446107, + "lon": 2.1916842, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Total", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 9797611182, + "lat": 48.8994232, + "lon": 2.3710185, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0196", + "socket:type3c": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020", + "source:position": "survey" + } + }, + { + "type": "node", + "id": 9797937800, + "lat": 44.1945198, + "lon": 0.5421484, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9797939927, + "lat": 43.5998889, + "lon": 1.3533888, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 9798936012, + "lat": 43.3162534, + "lon": -1.3526806, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9799756496, + "lat": 44.5172093, + "lon": 2.8136044, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "note": "Prises type2 et type E", + "operator": "Révéo", + "scooter": "no" + } + }, + { + "type": "node", + "id": 9800935384, + "lat": 44.6677823, + "lon": 2.1583188, + "tags": { + "amenity": "charging_station", + "authentication:credit_card": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "charge": "0.40 EUR/kWh", + "description": "0.040 EUR/minute > 1 hour", + "fee": "yes", + "motorcar": "yes", + "name": "Bagnac-sur-Célé - Parking de la Planquette", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "FDEL 46", + "ref:EU:EVSE": "FR*S46*P46015*001", + "scooter": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9800985463, + "lat": 44.7096134, + "lon": 2.1969454, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "6", + "charge": "4.00 EUR", + "description": "0.07 EUR/minute > 15 minutes", + "fee": "yes", + "motorcar": "yes", + "name": "Maurs - Rue du 8 mai 1945", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Cantal", + "ref:EU:EVSE": "FR*A88*P15122*001", + "socket:chademo": "2" + } + }, + { + "type": "node", + "id": 9802154136, + "lat": 47.545521, + "lon": 2.1853097, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:type2": "2", + "source": "BDOrtho IGN" + } + }, + { + "type": "node", + "id": 9802154263, + "lat": 47.5437716, + "lon": 2.1926442, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:type2": "2", + "source": "BDOrtho IGN" + } + }, + { + "type": "node", + "id": 9802527054, + "lat": 48.5715505, + "lon": 7.7814398, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 9803547314, + "lat": 44.9750993, + "lon": 5.5761032, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "website": "https://moncompte.reseau-eborn.fr/location/NKBQJ8XDAJ" + } + }, + { + "type": "node", + "id": 9803793328, + "lat": 44.9423775, + "lon": 4.886844, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 9805599534, + "lat": 47.0223191, + "lon": 4.8319946, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9807217413, + "lat": 48.8541853, + "lon": 2.3452424, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Belib Charging Station", + "operator": "Belib" + } + }, + { + "type": "node", + "id": 9809647961, + "lat": 47.1772587, + "lon": -1.5596466, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Station de Recharge Super U Rezé", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 9810563670, + "lat": 47.0488011, + "lon": 2.345499, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "operator": "Hôtel Ibis Styles Bourges", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 9811900418, + "lat": 48.3179959, + "lon": 4.104371, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9811956662, + "lat": 48.7096092, + "lon": 2.1706581, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "fee": "yes", + "name": "Joliot Curie - Est", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "002", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9812235617, + "lat": 43.6155591, + "lon": 3.1573142, + "tags": { + "addr:housenumber": "1", + "addr:postcode": "34600", + "addr:street": "Place Albert Thomas", + "amenity": "charging_station", + "name": "RÉVÉO Charging station", + "operator": "RÉVÉO", + "website": "https://reveocharge.com/fr/" + } + }, + { + "type": "node", + "id": 9812659277, + "lat": 47.1862372, + "lon": 5.3337764, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "fee": "yes", + "motorcar": "yes", + "name": "Fastned Aire de Pont Val de Saône", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50562", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9812670040, + "lat": 47.1792677, + "lon": 5.3337369, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Fastned Aire de Pont Chêne d'Argent", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50561", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9812687184, + "lat": 47.2170531, + "lon": 5.0018899, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Fastned Aire de Gevrey - Chambertin Ouest", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50558", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9814538385, + "lat": 48.37938, + "lon": -0.0539164, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "image": "https://i.imgur.com/2Wbq6bN.jpg", + "image:0": "https://i.imgur.com/siobCxt.jpg", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9814918511, + "lat": 47.4405718, + "lon": 6.7287189, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Fastned Aire d’Écot Sud", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50560", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9814953974, + "lat": 48.8031006, + "lon": 2.0117692, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "IES", + "motorcar": "yes", + "name": "8 Avenue Arletty", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:amperage": "62", + "socket:chademo:output": "24 kW", + "socket:chademo:voltage": "400", + "socket:type2": "1", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:amperage": "62", + "socket:type2_combo:output": "24 kW", + "socket:type2_combo:voltage": "400" + } + }, + { + "type": "node", + "id": 9815015292, + "lat": 48.7981566, + "lon": 2.026684, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Lafon", + "motorcar": "yes", + "name": "4 Rue Beltrame", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 9815042169, + "lat": 48.8140736, + "lon": 2.0494706, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Lafon", + "motorcar": "yes", + "name": "8 Rue Pierre Curie (devant l'église)", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 9815044759, + "lat": 48.8110197, + "lon": 2.0478664, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "IES", + "motorcar": "yes", + "name": "4 Avenue Jean Lurçat", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SIGEIF", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:amperage": "62", + "socket:chademo:output": "24 kW", + "socket:chademo:voltage": "400", + "socket:type2": "1", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:amperage": "62", + "socket:type2_combo:output": "24 kW", + "socket:type2_combo:voltage": "400" + } + }, + { + "type": "node", + "id": 9815507472, + "lat": 43.2640615, + "lon": 3.3210305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "May be reserved for customers of camping. Ask at reception", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Yelloh Sérignan", + "socket:tesla_supercharger": "2" + } + }, + { + "type": "node", + "id": 9815821290, + "lat": 47.9488164, + "lon": 1.8594412, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "7,4 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "DBT", + "motorcar": "yes", + "name": "Aire de covoiturage", + "network": "Paragon Mobility", + "opening_hours": "24/7", + "operator": "ChargePoint", + "owner": "Paragon Mobility", + "parking:fee": "no", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "16", + "socket:type2:output": "3,6 kW", + "socket:type2:voltage": "230", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9815821291, + "lat": 47.948833, + "lon": 1.8593913, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E435551;FR*ION*E435552;FR*ION*E435553", + "socket:chademo": "1", + "socket:chademo:current": "125 A", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63 A", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9815821292, + "lat": 47.9488425, + "lon": 1.8593597, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E435501", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815821293, + "lat": 47.948852, + "lon": 1.8593319, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E435502", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815821294, + "lat": 47.9488626, + "lon": 1.8593018, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E435503", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815821295, + "lat": 47.9488717, + "lon": 1.8592759, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E435504", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815821296, + "lat": 47.9488825, + "lon": 1.8592471, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E435505", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815821297, + "lat": 47.9488939, + "lon": 1.859216, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Orléans Nord", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Orleans Nord", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "6", + "ref:EU:EVSE": "FR*ION*E435506", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815862462, + "lat": 46.313113, + "lon": 1.4168265, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Boismandé Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E402001", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815862463, + "lat": 46.3130829, + "lon": 1.4168285, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Boismandé Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E402002", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815862464, + "lat": 46.3130545, + "lon": 1.4168311, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Boismandé Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E402003", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815862465, + "lat": 46.3130241, + "lon": 1.4168372, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Boismandé Ouest", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E402004", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815862466, + "lat": 46.3131187, + "lon": 1.4171316, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Boismandé Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E402051;FR*ION*E402052;FR*ION*E402053", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9815945744, + "lat": 46.3141222, + "lon": 1.4200737, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Boismandé Est", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E402404", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815945745, + "lat": 46.3141086, + "lon": 1.4200667, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Boismandé Est", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E402403", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815945746, + "lat": 46.3140644, + "lon": 1.4201527, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Boismandé Est", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E402402", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9815945747, + "lat": 46.3140474, + "lon": 1.4201414, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Boismandé Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Boismandé Est", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E402401", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9816591970, + "lat": 45.8387746, + "lon": 6.2147857, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9816924911, + "lat": 45.9757926, + "lon": 4.7157252, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 9816965870, + "lat": 45.9764256, + "lon": 4.7158547, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9817426086, + "lat": 45.0312399, + "lon": 1.5246783, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Pech Montat Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E433451;FR*ION*E433452;FR*ION*E433453", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9817426087, + "lat": 45.0312405, + "lon": 1.5247023, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Pech Montat Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E408751;FR*ION*E408752;FR*ION*E408753", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9817426088, + "lat": 45.0311281, + "lon": 1.5246787, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E433404", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426089, + "lat": 45.0311281, + "lon": 1.5247038, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E408704", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426090, + "lat": 45.031089, + "lon": 1.5246801, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E433403", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426091, + "lat": 45.0310885, + "lon": 1.5247061, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E408703", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426092, + "lat": 45.0310514, + "lon": 1.5246798, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E433402", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426093, + "lat": 45.0310514, + "lon": 1.5247052, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E408702", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426094, + "lat": 45.0310154, + "lon": 1.5246782, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Ouest", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E433401", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817426095, + "lat": 45.0310151, + "lon": 1.5247042, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "10", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Pech Montat Est", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Pech Montat", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E408701", + "socket:type2_combo": "8", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817520674, + "lat": 47.5003321, + "lon": -0.4911255, + "tags": { + "access": "no", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire des Portes d'Angers Sud", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "customers", + "motorcar": "customers", + "name": "IONITY Portes d'Angers (Sud)", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "6", + "ref:EU:EVSE": "FR*ION*E101406", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-24-07" + } + }, + { + "type": "node", + "id": 9817520675, + "lat": 47.5003159, + "lon": -0.4910865, + "tags": { + "access": "no", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire des Portes d'Angers Sud", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "customers", + "motorcar": "customers", + "name": "IONITY Portes d'Angers (Sud)", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E101405", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-24-07" + } + }, + { + "type": "node", + "id": 9817520676, + "lat": 47.5003053, + "lon": -0.4910561, + "tags": { + "access": "no", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire des Portes d'Angers Sud", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "customers", + "motorcar": "customers", + "name": "IONITY Portes d'Angers (Sud)", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E101404", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-24-07" + } + }, + { + "type": "node", + "id": 9817520677, + "lat": 47.5002927, + "lon": -0.4910231, + "tags": { + "access": "no", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire des Portes d'Angers Sud", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "customers", + "motorcar": "customers", + "name": "IONITY Portes d'Angers (Sud)", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E101403", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-24-07" + } + }, + { + "type": "node", + "id": 9817520678, + "lat": 47.50028, + "lon": -0.4909909, + "tags": { + "access": "no", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire des Portes d'Angers Sud", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "customers", + "motorcar": "customers", + "name": "IONITY Portes d'Angers (Sud)", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E101402", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-24-07" + } + }, + { + "type": "node", + "id": 9817520679, + "lat": 47.5002691, + "lon": -0.4909569, + "tags": { + "access": "no", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire des Portes d'Angers Sud", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "customers", + "motorcar": "customers", + "name": "IONITY Portes d'Angers (Sud)", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E101401", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-24-07" + } + }, + { + "type": "node", + "id": 9817953912, + "lat": 47.4755065, + "lon": 0.776951, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Tours la Longue Vue", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Tours La Longue Vue", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "6", + "ref:EU:EVSE": "FR*ION*E101206", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817953913, + "lat": 47.4754875, + "lon": 0.7769623, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Tours la Longue Vue", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Tours La Longue Vue", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E101205", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817953914, + "lat": 47.475466, + "lon": 0.7769751, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Tours la Longue Vue", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Tours La Longue Vue", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E101204", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817953915, + "lat": 47.4754407, + "lon": 0.7769901, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Tours la Longue Vue", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Tours La Longue Vue", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E101203", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817953916, + "lat": 47.4754173, + "lon": 0.777004, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Tours la Longue Vue", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Tours La Longue Vue", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E101202", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817965217, + "lat": 47.4753919, + "lon": 0.7770191, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Tours la Longue Vue", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Tours La Longue Vue", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E101201", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9817990303, + "lat": 45.7772076, + "lon": 4.8042466, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tissot-Bourgogne", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY901A" + } + }, + { + "type": "node", + "id": 9817990304, + "lat": 45.7771903, + "lon": 4.8042627, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tissot-Bourgogne", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "parking_space": "electric_vehicle", + "ref": "LY901B" + } + }, + { + "type": "node", + "id": 9817990305, + "lat": 45.7771737, + "lon": 4.8042763, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tissot-Bourgogne", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY901C" + } + }, + { + "type": "node", + "id": 9817990306, + "lat": 45.7771545, + "lon": 4.8042912, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Tissot-Bourgogne", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY901D" + } + }, + { + "type": "node", + "id": 9819656866, + "lat": 45.7773445, + "lon": 4.8286155, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard des Canuts", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY404C" + } + }, + { + "type": "node", + "id": 9819656867, + "lat": 45.7772407, + "lon": 4.8286973, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard des Canuts", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY404A" + } + }, + { + "type": "node", + "id": 9819656868, + "lat": 45.7773908, + "lon": 4.8285806, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard des Canuts", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY404D" + } + }, + { + "type": "node", + "id": 9819656869, + "lat": 45.7772883, + "lon": 4.8286582, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard des Canuts", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY404B" + } + }, + { + "type": "node", + "id": 9819681973, + "lat": 47.8021021, + "lon": -4.2963651, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "no", + "name": "Borne Garage Peugeot" + } + }, + { + "type": "node", + "id": 9820322793, + "lat": 47.1661954, + "lon": 0.6316578, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Fontaine Colette", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Fontaine Colette", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E101302", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9820322794, + "lat": 47.166191, + "lon": 0.6316214, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Fontaine Colette", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Fontaine Colette", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E101303", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9820322795, + "lat": 47.1661782, + "lon": 0.6315516, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Fontaine Colette", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Fontaine Colette", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E101305", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9820322796, + "lat": 47.16617, + "lon": 0.6315092, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Fontaine Colette", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Fontaine Colette", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "6", + "ref:EU:EVSE": "FR*ION*E101306", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920" + } + }, + { + "type": "node", + "id": 9820322797, + "lat": 47.1661616, + "lon": 0.6314592, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Fontaine Colette", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Fontaine Colette", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E101351;FR*ION*E101352;FR*ION*E101353", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9820655468, + "lat": 48.42598, + "lon": 2.9287, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "fixme": "location unknown", + "motorcar": "yes", + "name": "Fastned Aire de Jonchets - La Grande Paroisse", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50606", + "socket:chademo": "4", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9820664795, + "lat": 48.360859, + "lon": 2.57393, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "fee": "yes", + "fixme": "location unknown", + "motorcar": "yes", + "name": "Fastned Aire d’Achères - La Forêt", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50682", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9820669437, + "lat": 48.4287958, + "lon": 2.9317556, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Fastned Aire de Jonchets - Les Récompenses", + "note": "Location unknown", + "opening_hours": "24/7", + "operator": "Fastned", + "operator:wikidata": "Q19935749", + "ref": "50605", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "source": "https://fastnedcharging.com/nl/locaties", + "source:date": "2022-06-07", + "website": "https://fastnedcharging.com" + } + }, + { + "type": "node", + "id": 9822308130, + "lat": 45.1968419, + "lon": 6.623075, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Freney", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Freney", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E403751;FR*ION*E403752;FR*ION*E403753", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "start_date": "2019-18-04", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822308131, + "lat": 45.1968126, + "lon": 6.6230585, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Freney", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Freney", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E403701", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-04", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822308132, + "lat": 45.1967893, + "lon": 6.6230411, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Freney", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Freney", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E403702", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-04", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822308133, + "lat": 45.1967672, + "lon": 6.6230192, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Freney", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Freney", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E403703", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-04", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822308134, + "lat": 45.1967455, + "lon": 6.6230035, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Freney", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Aire de Freney", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E403704", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-04", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822321177, + "lat": 47.5189113, + "lon": 6.8140575, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "Total Energies", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 9822390364, + "lat": 50.1673707, + "lon": 1.755295, + "tags": { + "access": "customers", + "addr:city": "Sailly-Flibeaucourt", + "addr:postcode": "80970", + "addr:street": "A16 - Aire de la Baie de Somme", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "bicycle": "no", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "10", + "charge": "0,67 EUR/kWh", + "charging_station:output": "150 kW", + "covered": "no", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "Tesla, Inc.", + "motorbike": "no", + "motorcar": "yes", + "name": "Aire de la Baie de Somme Supercharger", + "network": "Tesla Supercharger", + "network:wikidata": "Q17089620", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "owner": "Tesla, Inc.", + "owner:wikidata": "Q478214", + "phone": "+33970730850", + "short_name": "Tesla", + "socket:tesla_supercharger": "10", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "10", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/airedelabaiedesommesupercharger" + } + }, + { + "type": "node", + "id": 9822404876, + "lat": 45.4405835, + "lon": 4.3875643, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "e-totem" + } + }, + { + "type": "node", + "id": 9822762385, + "lat": 48.6790161, + "lon": 5.8877613, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 9822893107, + "lat": 50.1673593, + "lon": 1.7555865, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E407904", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822893108, + "lat": 50.1673807, + "lon": 1.7555559, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E407903", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822893110, + "lat": 50.167425, + "lon": 1.7554983, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E407901", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9822893111, + "lat": 50.1674485, + "lon": 1.7554638, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E407951;FR*ION*E407952;FR*ION*E407953", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9824278280, + "lat": 43.0926344, + "lon": 2.6205591, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "covered": "no", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11185001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9824718168, + "lat": 48.887147, + "lon": 2.0628588, + "tags": { + "amenity": "charging_station", + "picture": "https://westnordost.de/p/64071.jpg" + } + }, + { + "type": "node", + "id": 9826074371, + "lat": 44.7737147, + "lon": -0.6132242, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9826230558, + "lat": 47.5099128, + "lon": 6.8092122, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "name": "Freshmile" + } + }, + { + "type": "node", + "id": 9826370305, + "lat": 43.2125041, + "lon": 2.3559734, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "covered": "yes", + "email": "support@alizecharge.fr", + "fee": "yes", + "level": "-1", + "motorcar": "yes", + "name": "Parking Gambetta", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11069009", + "socket:schuko": "4", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9826408540, + "lat": 43.3593412, + "lon": 2.4572603, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "3", + "covered": "no", + "email": "support@alizecharge.fr", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805022048", + "ref:EU:EVSE": "FR*S11*P11056001", + "scooter": "yes", + "socket:schuko": "3", + "socket:type2": "3", + "socket:type3": "3", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9827468726, + "lat": 47.1729129, + "lon": 4.9879453, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Orée Des Vignes 1", + "scooter": "yes", + "socket:schuko": "2" + } + }, + { + "type": "node", + "id": 9827468730, + "lat": 47.1728993, + "lon": 4.9880046, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Orée Des Vignes 2", + "scooter": "yes", + "socket:schuko": "2" + } + }, + { + "type": "node", + "id": 9828389965, + "lat": 43.2129717, + "lon": 2.3555906, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "covered": "no", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805028299", + "ref:EU:EVSE": "FR*S11*P11069006", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type3": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9830464371, + "lat": 48.0911917, + "lon": 5.1437076, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9830464372, + "lat": 48.0913795, + "lon": 5.143838, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9831539601, + "lat": 47.1236072, + "lon": -1.5827579, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44130C", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9831714451, + "lat": 45.6884636, + "lon": 4.8296218, + "tags": { + "amenity": "charging_station", + "network": "Izivia", + "ref": "IRY02A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9832260831, + "lat": 48.1887431, + "lon": -2.1707692, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9832260832, + "lat": 48.1887261, + "lon": -2.170747, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9832619245, + "lat": 48.1872969, + "lon": -2.1735725, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9832619246, + "lat": 48.1872808, + "lon": -2.1735966, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9832619247, + "lat": 48.1889219, + "lon": -2.1716396, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9832619248, + "lat": 48.1889309, + "lon": -2.1716141, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 9832794488, + "lat": 47.7958025, + "lon": 7.1624734, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Zone Ciné-Loisirs", + "opening_hours": "24/7", + "operator": "Freshmile", + "ref": "UMCB1;UMCB2;UMCB3;UMCB4", + "scooter": "yes", + "socket:chademo": "1", + "socket:type2": "2", + "socket:type2:output": "22kw", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 9832815603, + "lat": 47.7956538, + "lon": 7.1624114, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Zone Ciné-Loisirs", + "opening_hours": "24/7", + "operator": "Freshmile", + "ref": "MMDA1; MMDA2;MJPB1;MJPB2", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type2:output": "22kw" + } + }, + { + "type": "node", + "id": 9832815660, + "lat": 47.79572, + "lon": 7.1621697, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "name": "Zone Ciné-Loisirs", + "opening_hours": "24/7", + "operator": "Freshmile", + "ref": "MKKB1;MKKB2;MMDS1;MMDS2", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type2:output": "22kw" + } + }, + { + "type": "node", + "id": 9833693966, + "lat": 44.093001, + "lon": 5.4088617, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9833693967, + "lat": 44.0929779, + "lon": 5.4088456, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9833701191, + "lat": 48.4673111, + "lon": 1.5789035, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Chartres Bois Paris", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Bois Paris", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E126551;FR*ION*E126552;FR*ION*E126553", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701192, + "lat": 48.4672933, + "lon": 1.5787879, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Bois Paris", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Bois Paris", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "6", + "ref:EU:EVSE": "FR*ION*E126506", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701193, + "lat": 48.4672798, + "lon": 1.5787852, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Bois Paris", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Bois Paris", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E126505", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701194, + "lat": 48.4672706, + "lon": 1.5786918, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Bois Paris", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Bois Paris", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E126504", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701195, + "lat": 48.4672553, + "lon": 1.57869, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Bois Paris", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E126503", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701196, + "lat": 48.4687702, + "lon": 1.5798772, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Gasville", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Gasville", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E126405", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701197, + "lat": 48.4687787, + "lon": 1.5799771, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Gasville", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Gasville", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E126404", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701198, + "lat": 48.4687909, + "lon": 1.5800772, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Gasville", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Gasville", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E126402", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701199, + "lat": 48.4687802, + "lon": 1.5800898, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de Chartres Gasville", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Gasville", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E126401", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833701200, + "lat": 48.4688039, + "lon": 1.5801858, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de Chartres Gasville", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Chartres Gasville", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E126451;FR*ION*E126452;FR*ION*E126453", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "start_date": "2018-29-10", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9833723187, + "lat": 44.0587474, + "lon": 5.0680428, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 9833723189, + "lat": 44.0588033, + "lon": 5.0680201, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9835368517, + "lat": 45.7764768, + "lon": 3.0685115, + "tags": { + "amenity": "charging_station", + "survey:date": "2022-06-21" + } + }, + { + "type": "node", + "id": 9835468859, + "lat": 43.3378035, + "lon": 1.2455558, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de volvestre", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Volvestre", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E401951;FR*ION*E401952;FR*ION*E401953", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "start_date": "2019-18-02", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835468860, + "lat": 43.337944, + "lon": 1.245512, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de volvestre", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Volvestre", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E401904", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-02", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835468861, + "lat": 43.3379498, + "lon": 1.2455299, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de volvestre", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Volvestre", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E401903", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-02", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835468862, + "lat": 43.3378737, + "lon": 1.2455353, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de volvestre", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Volvestre", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E401902", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-02", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835468863, + "lat": 43.3378776, + "lon": 1.2455523, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de volvestre", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Volvestre", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E401901", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-18-02", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835569964, + "lat": 43.3345486, + "lon": 1.2448956, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "2", + "charge": "0,39€ / kWh", + "charging_station:output": "93 kW", + "covered": "no", + "description": "Aire de la Garonne", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Garonne", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "51;52;53", + "ref:EU:EVSE": "FR*ION*E401851;FR*ION*E401852;FR*ION*E401853", + "socket:chademo": "1", + "socket:chademo:current": "125", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "start_date": "2019-14-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835569965, + "lat": 43.3345838, + "lon": 1.2449856, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Garonne", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Garonne", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E401801", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-14-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835569966, + "lat": 43.3345721, + "lon": 1.2449908, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Garonne", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Garonne", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E401802", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-14-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835569967, + "lat": 43.3346099, + "lon": 1.2450815, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Garonne", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Garonne", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E401803", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-14-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835569968, + "lat": 43.3345964, + "lon": 1.245089, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "1", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Garonne", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "IONITY Garonne", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E401804", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-14-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 9835987984, + "lat": 46.1046714, + "lon": 4.7513964, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9836425792, + "lat": 49.1752079, + "lon": 4.2227104, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Virta (SIEM51)" + } + }, + { + "type": "node", + "id": 9836479672, + "lat": 49.146049, + "lon": 4.1629619, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Virta (SIEM51)" + } + }, + { + "type": "node", + "id": 9836521445, + "lat": 49.1973037, + "lon": 4.1322467, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Virta (SIEM51)" + } + }, + { + "type": "node", + "id": 9836521909, + "lat": 49.2124678, + "lon": 4.0926474, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Virta (SIEM51)" + } + }, + { + "type": "node", + "id": 9836555127, + "lat": 49.1413557, + "lon": 4.3659796, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Virta (SIEM51)" + } + }, + { + "type": "node", + "id": 9837024389, + "lat": 49.1600099, + "lon": 1.3336463, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "operator": "SGA Mobility", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9838292378, + "lat": 50.5220234, + "lon": 2.6390183, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9838292379, + "lat": 50.5220505, + "lon": 2.6389408, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9838292380, + "lat": 50.5220795, + "lon": 2.6388579, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Béthune Bruay Artois", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H13*P62119001", + "socket:type2": "12", + "socket:typee": "12", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9839255358, + "lat": 47.8780192, + "lon": 0.2282579, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9839255359, + "lat": 47.8780284, + "lon": 0.228374, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9839507981, + "lat": 48.0814888, + "lon": 7.3697383, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9839802705, + "lat": 48.1172458, + "lon": -1.6362314, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9839924846, + "lat": 50.2148928, + "lon": 1.6231585, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PIQIL9BNYXZ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9841169087, + "lat": 47.2542689, + "lon": 0.6720425, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9843535016, + "lat": 49.1631158, + "lon": 1.349926, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "model": "Zelie", + "operator": "SGA-Mobility", + "payment:cash": "no", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "serial_number": "900122", + "survey:date": "2022-06" + } + }, + { + "type": "node", + "id": 9844500893, + "lat": 49.1668511, + "lon": 1.3363174, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9848702766, + "lat": 48.1004001, + "lon": -1.794216, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 35", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "OUEST CHARGE - 35", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S35*PSD3510512;FR*S35*PSD3510511", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9848908889, + "lat": 44.7124688, + "lon": -1.0568038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey 2022;ortho hr 2018" + } + }, + { + "type": "node", + "id": 9852661974, + "lat": 48.3299537, + "lon": -1.8417626, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Izivia", + "operator": "Super U" + } + }, + { + "type": "node", + "id": 9855439670, + "lat": 44.9784896, + "lon": 1.8364501, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "MObiVE", + "operator": "MObiVE" + } + }, + { + "type": "node", + "id": 9855598159, + "lat": 46.0367223, + "lon": 4.0671515, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9856048617, + "lat": 48.8477976, + "lon": 2.4434038, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Metropolis", + "survey:date": "2022-06-29" + } + }, + { + "type": "node", + "id": 9856400130, + "lat": 49.2311302, + "lon": -0.1904095, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9857243859, + "lat": 47.4242901, + "lon": 0.9765942, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9857464109, + "lat": 43.6349294, + "lon": 6.9522851, + "tags": { + "access": "yes", + "amenity": "charging_station", + "operator": "Auchan", + "operator:wikidata": "Q758603" + } + }, + { + "type": "node", + "id": 9857507525, + "lat": 43.6344985, + "lon": 6.9497617, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Club Hippique de Grasse / Le Paddock" + } + }, + { + "type": "node", + "id": 9857747057, + "lat": 48.2317923, + "lon": 7.4028931, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 9858271780, + "lat": 46.6751732, + "lon": 5.5475653, + "tags": { + "access": "yes", + "amenity": "charging_station", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Bis Mobilité" + } + }, + { + "type": "node", + "id": 9858271781, + "lat": 46.6724862, + "lon": 5.557875, + "tags": { + "access": "customers", + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Hôtel du Parc" + } + }, + { + "type": "node", + "id": 9858682056, + "lat": 43.6105878, + "lon": 6.4824787, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SymielecVar", + "ref:EU:EVSE": "FR*EBN*PPS4X9OLB4Z", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020", + "website": "https://www.eborn.fr" + } + }, + { + "type": "node", + "id": 9859314036, + "lat": 45.7910648, + "lon": 6.212926, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9860095009, + "lat": 46.6802431, + "lon": 5.5742533, + "tags": { + "access": "private", + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Abrapa" + } + }, + { + "type": "node", + "id": 9860256070, + "lat": 49.1176453, + "lon": 7.0820896, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@freshmile.com", + "fee": "yes", + "operator": "Freshmile", + "phone": "+33 3 88 68 84 58", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Freshmile;survey", + "website": "https://freshmile.com/" + } + }, + { + "type": "node", + "id": 9860256071, + "lat": 49.1075539, + "lon": 7.0880506, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@freshmile.com", + "fee": "yes", + "operator": "Freshmile", + "phone": "+33 3 88 68 84 58", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "freshmile.com;survey", + "website": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 9860256072, + "lat": 49.100714, + "lon": 7.0960246, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@freshmile.com", + "fee": "yes", + "operator": "Freshmile", + "phone": "+33 3 88 68 84 58", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "freshmile.com;survey" + } + }, + { + "type": "node", + "id": 9860256074, + "lat": 49.0926614, + "lon": 7.0412538, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:charging": "2", + "email": "support@freshmile.com", + "fee": "yes", + "operator": "Freshmile", + "phone": "+33 3 88 68 84 58", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "survey;website freshmile", + "website": "https://freshmile.com/" + } + }, + { + "type": "node", + "id": 9860256076, + "lat": 49.0528361, + "lon": 6.929413, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "capacity:charging": "2", + "email": "support@freshmile.com", + "fee": "no", + "operator": "Freshmile", + "phone": "+33 3 88 68 84 58", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "survey;website freshmile", + "website": "https://freshmile.com/" + } + }, + { + "type": "node", + "id": 9860307796, + "lat": 46.6938054, + "lon": 5.5585134, + "tags": { + "access": "customers", + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Ford Groupe Grenard" + } + }, + { + "type": "node", + "id": 9860851822, + "lat": 47.7488316, + "lon": 7.311268, + "tags": { + "access": "permit", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9861190787, + "lat": 46.1420685, + "lon": 6.1376278, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Réseau eborn Charging Station", + "operator": "eborn", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9861190788, + "lat": 46.1242106, + "lon": 6.0944198, + "tags": { + "addr:housenumber": "403", + "addr:street": "Route d'Annecy", + "amenity": "charging_station", + "capacity": "3", + "name": "Corridor-CNR Charging Station", + "operator": "CNR", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 9861204336, + "lat": 46.1302052, + "lon": 6.0878792, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "name": "Freshmile Charging Station", + "operator": "Freshmile", + "socket:type2": "8", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9862164729, + "lat": 49.1667389, + "lon": -0.2767623, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Giberville Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9862375861, + "lat": 50.6626322, + "lon": 3.0727335, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "manufacturer": "Kino", + "operator": "Driveco" + } + }, + { + "type": "node", + "id": 9862375862, + "lat": 50.6625701, + "lon": 3.0722563, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "covered": "no", + "email": "exploitation@driveco.com", + "fee": "yes", + "manufacturer": "Kino", + "motorcar": "yes", + "network": "Terrasses de la Madeleine", + "opening_hours": "24/7", + "operator": "Driveco", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMADELEINE597001", + "socket:type2": "6", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9862375863, + "lat": 50.6626039, + "lon": 3.0724704, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "covered": "no", + "email": "exploitation@driveco.com", + "fee": "yes", + "manufacturer": "Kino", + "motorcar": "yes", + "network": "Terrasses de la Madeleine", + "opening_hours": "24/7", + "operator": "Driveco", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMADELEINE597001", + "socket:type2": "6", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9862397726, + "lat": 47.2793771, + "lon": -2.4796205, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9864254433, + "lat": 46.1437016, + "lon": 3.4141801, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-06-11" + } + }, + { + "type": "node", + "id": 9864591660, + "lat": 48.8513028, + "lon": 2.3469755, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9865143348, + "lat": 48.8782944, + "lon": 2.1432069, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 9865161722, + "lat": 44.6614614, + "lon": 6.6491425, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "eborn", + "survey:date": "2022-06-28" + } + }, + { + "type": "node", + "id": 9865378205, + "lat": 43.9441172, + "lon": 7.5169586, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "free with operator card", + "fee": "no", + "name": "Borne recharge voiture EV", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 9865457060, + "lat": 49.1678888, + "lon": -0.2738726, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Giberville Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9866164538, + "lat": 42.794968, + "lon": 0.4417355, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65099*001", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9867700342, + "lat": 47.0671798, + "lon": -0.8541808, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9868636126, + "lat": 44.8381109, + "lon": -0.5903858, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Bordeaux Métropole Charging Station" + } + }, + { + "type": "node", + "id": 9868636127, + "lat": 44.8380871, + "lon": -0.5903623, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Bordeaux Métropole Charging Station" + } + }, + { + "type": "node", + "id": 9868920446, + "lat": 44.8475451, + "lon": -0.5765365, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Bluecub Charging Station" + } + }, + { + "type": "node", + "id": 9868920447, + "lat": 44.8475518, + "lon": -0.5765314, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Bluecub Charging Station" + } + }, + { + "type": "node", + "id": 9868920448, + "lat": 44.8475387, + "lon": -0.5765408, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Bluecub Charging Station" + } + }, + { + "type": "node", + "id": 9868920449, + "lat": 44.8475319, + "lon": -0.5765445, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Bluecub Charging Station" + } + }, + { + "type": "node", + "id": 9868920450, + "lat": 44.8475249, + "lon": -0.5765496, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Bluecub Charging Station" + } + }, + { + "type": "node", + "id": 9868920451, + "lat": 44.8475189, + "lon": -0.5765543, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Bluecub Charging Station" + } + }, + { + "type": "node", + "id": 9868945217, + "lat": 47.0293561, + "lon": -0.9425272, + "tags": { + "access": "yes", + "amenity": "charging_station", + "name": "SiemlMobi", + "operator": "sieml" + } + }, + { + "type": "node", + "id": 9869048257, + "lat": 46.5880466, + "lon": 3.3142328, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "parking_space": "disabled" + } + }, + { + "type": "node", + "id": 9869048258, + "lat": 46.5877817, + "lon": 3.3138686, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 9869103364, + "lat": 48.5709766, + "lon": 7.7959299, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9870004274, + "lat": 46.9950422, + "lon": -1.5959687, + "tags": { + "amenity": "charging_station", + "motor_vehicle": "yes" + } + }, + { + "type": "node", + "id": 9870327256, + "lat": 45.7831682, + "lon": 4.8795149, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "EVBox", + "ref": "EVB-P2212121", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9870327257, + "lat": 45.782615, + "lon": 4.8747144, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "EVBox", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9870340052, + "lat": 45.7836976, + "lon": 4.8794968, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "EVLink", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 9870684615, + "lat": 45.7164658, + "lon": 4.9581391, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "name": "Lidl Charging Station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9870684616, + "lat": 45.7166559, + "lon": 4.9586703, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "name": "Lidl Charging Station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9871113831, + "lat": 48.773242, + "lon": 2.2382153, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0.44€/kWh", + "fee": "yes", + "name": "Electra - La Boursidière", + "operator": "Electra", + "parking:fee": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "socket:type2_combo:voltage": "400", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fMzVkYzQ4YzQtNTZhMS0xMWVjLWEyNDUtNmI1OGJkNzI1ZTg3" + } + }, + { + "type": "node", + "id": 9871117748, + "lat": 43.2463491, + "lon": 3.2947002, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "socket:schuko": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9871117749, + "lat": 43.2462329, + "lon": 3.294505, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "socket:schuko": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9871967949, + "lat": 47.2984897, + "lon": -1.4893841, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44026A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9872182214, + "lat": 43.3168721, + "lon": -0.4272988, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9872182215, + "lat": 43.3168784, + "lon": -0.4273041, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9872182216, + "lat": 43.3168937, + "lon": -0.42728, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9872205317, + "lat": 43.3168902, + "lon": -0.4272752, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9873249934, + "lat": 45.7798793, + "lon": 4.8651667, + "tags": { + "access": "private", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "EVLink", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9873301813, + "lat": 45.7545973, + "lon": 4.8850107, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 9873301814, + "lat": 45.7545718, + "lon": 4.8849604, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 9873301815, + "lat": 45.7545058, + "lon": 4.8848337, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 9873301816, + "lat": 45.754532, + "lon": 4.8848853, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 9874575694, + "lat": 43.8956791, + "lon": -0.4873865, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9875095251, + "lat": 48.5856074, + "lon": 7.7492771, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "Freshmile Charging Station" + } + }, + { + "type": "node", + "id": 9875347160, + "lat": 48.5888373, + "lon": 7.6869086, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9875347161, + "lat": 48.5888067, + "lon": 7.6868848, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9875347162, + "lat": 48.5888655, + "lon": 7.68693, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 9875827020, + "lat": 43.6373257, + "lon": 1.5013411, + "tags": { + "amenity": "charging_station", + "capacity": "9", + "fixme": "localisation précise", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 9875835936, + "lat": 50.2254996, + "lon": 3.0702677, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "name": "Ionity Baralle", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "2", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9876488780, + "lat": 47.3669941, + "lon": -1.1741749, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9876707104, + "lat": 45.7722099, + "lon": 4.9764911, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9877004157, + "lat": 48.8906247, + "lon": 1.6638408, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY ma borne", + "operator": "SEY78", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 9877004197, + "lat": 48.8745264, + "lon": 1.9740348, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SEY78", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 9878922285, + "lat": 48.8809681, + "lon": 2.1399743, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9879393584, + "lat": 48.9278029, + "lon": 1.9349862, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SEY78" + } + }, + { + "type": "node", + "id": 9879469035, + "lat": 44.9898593, + "lon": -0.4510584, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9879573853, + "lat": 42.6401536, + "lon": 3.0334872, + "tags": { + "amenity": "charging_station", + "fixme": "emplacement approximatif" + } + }, + { + "type": "node", + "id": 9879573854, + "lat": 42.6262027, + "lon": 2.9511052, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9881724878, + "lat": 43.9282638, + "lon": -0.6409825, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9883115656, + "lat": 42.2258733, + "lon": 9.548881, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "operator": "E-motum", + "payment:app": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 9883141140, + "lat": 49.0115177, + "lon": 2.2044939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Communauté d'Agglomération Val Parisis" + } + }, + { + "type": "node", + "id": 9883253079, + "lat": 46.0305714, + "lon": 4.0499821, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "website": "eborn.fr" + } + }, + { + "type": "node", + "id": 9883735955, + "lat": 47.9005251, + "lon": -3.5219176, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29SFFE", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883735956, + "lat": 47.8687524, + "lon": -3.5522443, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29DKYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883738391, + "lat": 43.0204369, + "lon": 0.6084313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65287*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883777614, + "lat": 43.018931, + "lon": 0.5894401, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65407*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883792875, + "lat": 48.1372577, + "lon": -3.8361517, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BUUV", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883802734, + "lat": 43.2671555, + "lon": 0.5069301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Watt else?", + "opening_hours": "24/7", + "operator": "SDE65", + "owner": "SDE65", + "ref:EU:EVSE": "FR*S65*P65230*CIZ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883804658, + "lat": 48.060765, + "lon": -3.832743, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29YLYT", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883807633, + "lat": 43.32153, + "lon": 0.3729174, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65452*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883808045, + "lat": 42.7993334, + "lon": 0.4080038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDE 65", + "ref:EU:EVSE": "FR*S65*P65282*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883811143, + "lat": 47.8734217, + "lon": -3.9177173, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29SCKE", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883818827, + "lat": 47.958647, + "lon": -3.6230466, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ACWM", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883819127, + "lat": 47.8575522, + "lon": -3.6055193, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BDTD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883819267, + "lat": 47.8183517, + "lon": -3.7913994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KUUK", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883820128, + "lat": 47.9266409, + "lon": -3.7061267, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29JNXN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883821801, + "lat": 47.9667667, + "lon": -3.9373888, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29RUYL", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883826542, + "lat": 47.874188, + "lon": -3.5458514, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29TFGQ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883830442, + "lat": 47.8913637, + "lon": -4.0121293, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29AAQD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883841145, + "lat": 47.8722849, + "lon": -3.909799, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29PUJT", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883846045, + "lat": 47.9354561, + "lon": -4.0228684, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29EESP", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9883848659, + "lat": 47.9067601, + "lon": -4.0456833, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BKKA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9884495381, + "lat": 48.3811936, + "lon": 2.9418294, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9884495393, + "lat": 48.3811887, + "lon": 2.9397212, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9884578396, + "lat": 46.0377096, + "lon": 4.0634287, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9889080617, + "lat": 46.3005487, + "lon": -0.4969127, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-20", + "motorcar": "yes", + "network": "AlterBase", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB37093A", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020; survey" + } + }, + { + "type": "node", + "id": 9889701511, + "lat": 47.9019397, + "lon": -4.2801456, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29RQUP", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889727798, + "lat": 48.0083819, + "lon": -4.0243673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ACTP", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889755320, + "lat": 47.8803661, + "lon": -4.2179656, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29DXBC", + "socket:chademo": "1", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889758438, + "lat": 47.9817099, + "lon": -4.2709902, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ADHN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889763265, + "lat": 48.285254, + "lon": -4.5080344, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BJMS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889772934, + "lat": 47.9832161, + "lon": -4.0720464, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29AAWV", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889774674, + "lat": 48.003112, + "lon": -4.0938084, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BPYJ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889775501, + "lat": 48.0161965, + "lon": -4.207359, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KTKD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889780773, + "lat": 48.0437988, + "lon": -4.326554, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KDKM", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889781659, + "lat": 48.2532621, + "lon": -3.826147, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BBSD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889784325, + "lat": 48.1252686, + "lon": -4.2214236, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29KLYN", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9889794779, + "lat": 48.0917493, + "lon": -4.057624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29WTPP", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9890396902, + "lat": 49.0528372, + "lon": 6.6138433, + "tags": { + "amenity": "charging_station", + "network": "Shell Recharge", + "operator": "Freshmile Charge" + } + }, + { + "type": "node", + "id": 9890573612, + "lat": 45.7977852, + "lon": 4.8443071, + "tags": { + "amenity": "charging_station", + "brand": "Izivia Grand Lyon", + "capacity": "2", + "fee": "yes", + "ref": "CAL05A", + "socket:chademo": "2", + "socket:chademo:output": "24 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 9890573613, + "lat": 45.7978461, + "lon": 4.8444011, + "tags": { + "amenity": "charging_station", + "brand": "Izivia Grand Lyon", + "capacity": "2", + "fee": "yes", + "ref": "CAL05B", + "socket:chademo": "2", + "socket:chademo:output": "24 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 9891087203, + "lat": 42.1033105, + "lon": 9.2124896, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9891340582, + "lat": 48.8894376, + "lon": 2.1569904, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9891769694, + "lat": 45.8358667, + "lon": 4.8226524, + "tags": { + "amenity": "charging_station", + "brand": "Izivia Grand Lyon", + "fee": "yes", + "network": "Izivia Grand Lyon", + "socket:type2": "2", + "socket:type2:output": "7.4 kW" + } + }, + { + "type": "node", + "id": 9892059378, + "lat": 45.7533508, + "lon": 4.849486, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Aristide Briand", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY310A;MAT-009147", + "ref:EU:EVSE": "FR*GLY*PLYON13212", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9892148046, + "lat": 48.610862, + "lon": -1.5097025, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "socket:tesla_standard": "yes" + } + }, + { + "type": "node", + "id": 9892501533, + "lat": 43.3182827, + "lon": 3.5465947, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34150002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9893042047, + "lat": 43.6800481, + "lon": 4.148203, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "level": "0", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Enerstock", + "socket:type2": "8", + "website": "https://enerstock.chargecloud.de" + } + }, + { + "type": "node", + "id": 9893048331, + "lat": 43.537658, + "lon": 2.2620364, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9893364285, + "lat": 48.9575248, + "lon": 2.8745127, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9893364286, + "lat": 48.9575011, + "lon": 2.874508, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9894641128, + "lat": 47.7399198, + "lon": 7.1493796, + "tags": { + "amenity": "charging_station", + "authentication:contactless": "yes", + "authentication:nfc": "yes", + "fee": "yes", + "name": "HyperU", + "opening_hours": "24/7", + "operator": "ZEBorne", + "ref": "22301;22302;29223;29224", + "socket:schuko": "4", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 9895315832, + "lat": 47.2537407, + "lon": -0.0635451, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no", + "operator": "Siéml" + } + }, + { + "type": "node", + "id": 9896125030, + "lat": 47.3637031, + "lon": 0.6776022, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "VIRTA", + "brand:wikidata": "Q97205884", + "capacity": "2", + "fee": "yes", + "name": "Virta Global charging station", + "note:type_prise": "E/F-T2", + "opening_hours": "24/7", + "operator": "EneRSIEIL", + "payment:app": "yes" + } + }, + { + "type": "node", + "id": 9896261095, + "lat": 47.2805389, + "lon": 3.4917765, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9896315795, + "lat": 48.8552753, + "lon": 2.3783325, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9897187746, + "lat": 42.5781926, + "lon": 2.8467126, + "tags": { + "amenity": "charging_station", + "description": "4x ionity 1x 7kWh" + } + }, + { + "type": "node", + "id": 9897528880, + "lat": 45.0327619, + "lon": 4.0628502, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Borne de recharge véhicules", + "operator": "eborn", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9897763527, + "lat": 48.7343019, + "lon": 2.8691053, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "capacity:disabled": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9898864915, + "lat": 48.0411321, + "lon": 7.1426808, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9898868452, + "lat": 48.0419261, + "lon": 7.1347138, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9899534633, + "lat": 48.8854767, + "lon": 2.155129, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9900135984, + "lat": 48.3815624, + "lon": 2.8151306, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9900218617, + "lat": 42.8142499, + "lon": 2.7447165, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S66*P66205001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9900585020, + "lat": 49.188834, + "lon": -0.300222, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9901793893, + "lat": 45.0711593, + "lon": 5.2436237, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "fee": "no", + "name": "Boren VAE Saint-Hilaire du Rosier Gare", + "operator": "SMVIC", + "phone": "yes" + } + }, + { + "type": "node", + "id": 9902470182, + "lat": 48.778877, + "lon": 2.2133951, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "operator": "hypercharger" + } + }, + { + "type": "node", + "id": 9902470183, + "lat": 48.7788651, + "lon": 2.2135023, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "1", + "fee": "no", + "operator": "hypercharger" + } + }, + { + "type": "node", + "id": 9903455246, + "lat": 47.7330277, + "lon": 6.9683267, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "manufacturer": "Sobem Scame", + "model": "29041-R9007-1", + "motorcar": "yes", + "network": "Territoire d'Énergie 90", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "Territoire d'Énergie 90", + "ref:EU:EVSE": "FR*S90*P090089115", + "serial_number": "500021632", + "socket:type2": "2", + "socket:typee": "2", + "start_date": "2019-06" + } + }, + { + "type": "node", + "id": 9903615633, + "lat": 49.6129376, + "lon": 1.5471712, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9903672136, + "lat": 50.6257816, + "lon": 3.1227241, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9903733684, + "lat": 49.6994406, + "lon": 0.2861804, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9903848206, + "lat": 48.4759937, + "lon": 2.6909857, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9903848207, + "lat": 48.4760219, + "lon": 2.6909374, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9904031352, + "lat": 44.3699257, + "lon": 6.6030203, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide Pra Loup", + "opening_hours": "24/7", + "operator": "SDE04-eborn", + "ref": "FCTX", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "44", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50" + } + }, + { + "type": "node", + "id": 9904079916, + "lat": 44.387731, + "lon": 6.6541577, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Barcelonnette, Place Paul Reynaud, 22kW AC", + "network": "eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SPBR1", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref": "DWJA", + "ref:EU:EVSE": "FR*EBN*PQ95UGK3FNX", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9904106944, + "lat": 44.6744915, + "lon": 6.0729799, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide La Fare", + "network": "E Born", + "opening_hours": "24/7", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "44", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50" + } + }, + { + "type": "node", + "id": 9904455795, + "lat": 47.8628688, + "lon": -4.2245606, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-07-22" + } + }, + { + "type": "node", + "id": 9904844104, + "lat": 49.1888819, + "lon": -0.3003645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9905001108, + "lat": 50.7317807, + "lon": 1.595227, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "ref:EU:EVSE": "FR*H05*P62160*007", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9905503658, + "lat": 48.5793118, + "lon": 6.5171827, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9906212881, + "lat": 48.2785886, + "lon": 3.8727142, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 9906252195, + "lat": 43.8963484, + "lon": -0.4822135, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SYDEC" + } + }, + { + "type": "node", + "id": 9906252844, + "lat": 46.3363973, + "lon": -0.4103783, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9906326206, + "lat": 46.3371368, + "lon": -0.4119265, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 9906501436, + "lat": 45.5357396, + "lon": 1.7947961, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "MObiVE Treignac", + "operator": "MObiVE" + } + }, + { + "type": "node", + "id": 9907963919, + "lat": 48.9212776, + "lon": 1.7689827, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY ma borne", + "operator": "SEY78", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 9908005772, + "lat": 42.238143, + "lon": 8.6364002, + "tags": { + "amenity": "charging_station", + "name": "Charging station" + } + }, + { + "type": "node", + "id": 9909164754, + "lat": 48.6136587, + "lon": 2.8880839, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "capacity:disabled": "1", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9909269263, + "lat": 48.6288914, + "lon": -2.0058297, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Hager" + } + }, + { + "type": "node", + "id": 9909667323, + "lat": 48.5784287, + "lon": 7.7591566, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "EVBOX" + } + }, + { + "type": "node", + "id": 9909974228, + "lat": 48.8866786, + "lon": 2.2201487, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "La Borne Bleue", + "operator": "SIPPEREC" + } + }, + { + "type": "node", + "id": 9909991309, + "lat": 49.0021185, + "lon": 7.0306174, + "tags": { + "addr:city": "Sarralbe", + "addr:housenumber": "3", + "addr:street": "Quai de l'Albe", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "email": "support@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile", + "parking:fee": "no", + "phone": "+33 3 88 68 84 58", + "socket:schuko": "2", + "socket:schuko:output": "2 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://freshmile.com" + } + }, + { + "type": "node", + "id": 9910171208, + "lat": 43.5795312, + "lon": 1.445986, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 9911112762, + "lat": 43.2709208, + "lon": 5.3830471, + "tags": { + "amenity": "charging_station", + "description": "la recharge x2" + } + }, + { + "type": "node", + "id": 9911341451, + "lat": 47.2574411, + "lon": -2.2636174, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9914732096, + "lat": 43.5486534, + "lon": 1.4776823, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9914999018, + "lat": 50.7316771, + "lon": 2.2959879, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H01*P62040001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "survey:date": "2022-07-23" + } + }, + { + "type": "node", + "id": 9916313354, + "lat": 49.1619588, + "lon": 5.3886247, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9916323095, + "lat": 49.1602889, + "lon": 5.3907391, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Modulo" + } + }, + { + "type": "node", + "id": 9916336218, + "lat": 49.1592088, + "lon": 5.3877122, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Modulo" + } + }, + { + "type": "node", + "id": 9916475850, + "lat": 48.9046493, + "lon": 2.5499365, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9916532671, + "lat": 48.9057834, + "lon": 2.5237709, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9917843483, + "lat": 47.8781858, + "lon": 7.3045139, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9918645656, + "lat": 48.6137314, + "lon": 2.8879351, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9918645657, + "lat": 48.6137071, + "lon": 2.8879847, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9918645658, + "lat": 48.6136829, + "lon": 2.8880343, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9918746000, + "lat": 45.832381, + "lon": 1.2596364, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "note": "Bornes près de la sortie au -1" + } + }, + { + "type": "node", + "id": 9918746001, + "lat": 45.8304813, + "lon": 1.2549265, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "layer": "-1", + "note": "Situées au niveau 1 juste à hauteur de l'entrée/sortie." + } + }, + { + "type": "node", + "id": 9919091912, + "lat": 48.9735216, + "lon": 3.2190174, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9919091913, + "lat": 48.9735312, + "lon": 3.2189477, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9919805631, + "lat": 43.8388969, + "lon": 4.3637813, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "network": "Révéo", + "socket:type2": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 9920632766, + "lat": 43.6799012, + "lon": 4.1480498, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "level": "1", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Enerstock", + "socket:type2": "12", + "website": "https://enerstock.chargecloud.de" + } + }, + { + "type": "node", + "id": 9920653292, + "lat": 45.8410599, + "lon": 3.1174489, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9920798901, + "lat": 43.7580503, + "lon": 7.4737402, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "evzen" + } + }, + { + "type": "node", + "id": 9920898085, + "lat": 47.6152551, + "lon": -0.7082333, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "check_date": "2022-07-30", + "name": "Weldom Grez-Neuville", + "opening_date": "2022-09-15", + "opening_hours:-2022-09-29": "closed", + "opening_hours:2022-09-30-": "24/7", + "operator": "Weldom", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 9920980353, + "lat": 47.8087698, + "lon": -2.3946356, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity:charging": "2", + "charging_station:output": "50", + "fee": "yes", + "fixme": "Emplacement approximatif", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "payment:american_express": "no", + "payment:cb": "yes", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "20", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20" + } + }, + { + "type": "node", + "id": 9920980354, + "lat": 47.8099202, + "lon": -2.3844519, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity:charging": "2", + "charging_station:output": "50", + "fee": "yes", + "fixme": "Emplacement approximatif", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "payment:american_express": "no", + "payment:cb": "yes", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "20", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20" + } + }, + { + "type": "node", + "id": 9920980355, + "lat": 47.8107649, + "lon": -2.3836853, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity:charging": "2", + "charging_station:output": "50", + "fee": "yes", + "fixme": "Emplacement approximatif", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "payment:american_express": "no", + "payment:cb": "yes", + "payment:contactless": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "20", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20" + } + }, + { + "type": "node", + "id": 9921047336, + "lat": 46.7579056, + "lon": 0.5690401, + "tags": { + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 9921277216, + "lat": 45.6138949, + "lon": 5.2249917, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "4", + "motorcar": "no", + "motorcycle": "yes", + "scooter": "no", + "truck": "no" + } + }, + { + "type": "node", + "id": 9921313021, + "lat": 45.6138776, + "lon": 5.2249609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "socket:type2": "2", + "socket:type2_combo:output": "22" + } + }, + { + "type": "node", + "id": 9921313022, + "lat": 45.6139647, + "lon": 5.2250121, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "8", + "fee": "no", + "motorcar": "no", + "motorcycle": "no", + "scooter": "no", + "socket:typee": "8", + "truck": "no", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9921313023, + "lat": 45.6139897, + "lon": 5.2250171, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "no", + "capacity": "6", + "fee": "no", + "motorcar": "no", + "motorcycle": "no", + "scooter": "yes", + "socket:typee": "6", + "truck": "no", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9921313024, + "lat": 45.6140067, + "lon": 5.2249923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO900529", + "socket:type2": "2", + "socket:type2_combo:output": "22" + } + }, + { + "type": "node", + "id": 9921313025, + "lat": 45.6139866, + "lon": 5.2249884, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO900042", + "socket:type2_combo": "2", + "socket:type2_combo:output": "75" + } + }, + { + "type": "node", + "id": 9921313026, + "lat": 45.6139438, + "lon": 5.2249774, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO900116", + "socket:type2_combo": "2", + "socket:type2_combo:output": "300" + } + }, + { + "type": "node", + "id": 9921313027, + "lat": 45.6139015, + "lon": 5.224968, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO900020", + "socket:type2_combo": "2", + "socket:type2_combo:output": "300" + } + }, + { + "type": "node", + "id": 9921490575, + "lat": 45.8955876, + "lon": 4.9302754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Station de recharge voiture électrique", + "opening_hours": "24/7", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9921596789, + "lat": 48.8700584, + "lon": 2.3344119, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "name": "Ubeeqo" + } + }, + { + "type": "node", + "id": 9922001387, + "lat": 45.574635, + "lon": 6.7854385, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "operator": "Shell Recharge Solutions", + "operator:wikidata": "Q105883058" + } + }, + { + "type": "node", + "id": 9922557686, + "lat": 45.3175764, + "lon": 3.1726634, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW;4 kW", + "charging_station:plug": "type E;type2", + "website": "https://moncompte.reseau-eborn.fr/location/AJT1WFBIB4/GAUZ1" + } + }, + { + "type": "node", + "id": 9924820686, + "lat": 49.0316311, + "lon": 7.7691831, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fixme": "A completer." + } + }, + { + "type": "node", + "id": 9926175517, + "lat": 46.1685197, + "lon": -1.1264651, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "24", + "charge": "0.19+0.02/minute", + "fee": "yes", + "operator": "Freshmile", + "payment:cards": "yes", + "survey:date": "2022-08-02" + } + }, + { + "type": "node", + "id": 9927477086, + "lat": 48.7649985, + "lon": 2.4942787, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 9927814677, + "lat": 41.5994856, + "lon": 9.2758546, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "name": "Driveco Charging Station" + } + }, + { + "type": "node", + "id": 9928738717, + "lat": 46.1684618, + "lon": -1.1264657, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.19 +0.02/minute", + "fee": "yes", + "operator": "Freshmile", + "payment:cards": "yes", + "survey:date": "2022-08-03" + } + }, + { + "type": "node", + "id": 9928937490, + "lat": 45.590692, + "lon": 5.2787496, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Réseau eborn", + "socket:chademo": "1", + "socket:chademo:output": "24", + "socket:type2": "1", + "socket:type2:output": "22", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 9929333917, + "lat": 43.7867349, + "lon": 7.2762081, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9929934100, + "lat": 45.5437125, + "lon": 6.7566967, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Schneider Electric" + } + }, + { + "type": "node", + "id": 9930225839, + "lat": 43.3844236, + "lon": -1.6937779, + "tags": { + "amenity": "charging_station", + "name": "Charging Station" + } + }, + { + "type": "node", + "id": 9931461719, + "lat": 46.8102133, + "lon": 1.6758736, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 9931649103, + "lat": 47.4215768, + "lon": -1.6388424, + "tags": { + "access": "customers", + "addr:city": "héric", + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "model": "EVlink", + "name": "Borne recharge électrique", + "output": "22KW" + } + }, + { + "type": "node", + "id": 9932837767, + "lat": 45.7483247, + "lon": 6.2929083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "payment:contactless": "yes", + "ref": "AQHN" + } + }, + { + "type": "node", + "id": 9934101947, + "lat": 46.8957219, + "lon": 2.7307326, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9934456353, + "lat": 48.6587871, + "lon": 6.1827969, + "tags": { + "amenity": "charging_station", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 9934502370, + "lat": 49.4175325, + "lon": 1.133668, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9936088288, + "lat": 48.2934297, + "lon": 6.9350193, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9936088289, + "lat": 48.293424, + "lon": 6.9350535, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9936133014, + "lat": 48.2917362, + "lon": 6.9389501, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://e-mobility.lidl.fr", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Lidl", + "network": "Lidl", + "opening_hours": "24/7", + "parking:fee": "no", + "start_date": "2022-08-08" + } + }, + { + "type": "node", + "id": 9936133015, + "lat": 48.2917272, + "lon": 6.9390277, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://e-mobility.lidl.fr", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Lidl", + "network": "Lidl", + "opening_hours": "24/7", + "parking:fee": "no", + "start_date": "2022-08-08" + } + }, + { + "type": "node", + "id": 9936133016, + "lat": 48.2917183, + "lon": 6.9391063, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://e-mobility.lidl.fr", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Lidl", + "network": "Lidl", + "opening_hours": "24/7", + "parking:fee": "no", + "start_date": "2022-08-08" + } + }, + { + "type": "node", + "id": 9936134638, + "lat": 45.8170025, + "lon": 4.887683, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "name": "Rillieux-La-Pape Centre aquatique", + "network": "Izivia Grand Lyon", + "network:website": "https://grandlyon.izivia.com/", + "opening_hours": "24/7", + "ref": "RIL04A", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 9936134639, + "lat": 45.8170351, + "lon": 4.8875868, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "name": "Rillieux-La-Pape Centre aquatique", + "network": "Izivia Grand Lyon", + "network:website": "https://grandlyon.izivia.com/", + "opening_hours": "24/7", + "ref": "RIL04B", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 9936150217, + "lat": 48.2917103, + "lon": 6.9391853, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://e-mobility.lidl.fr", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Lidl", + "network": "Lidl", + "opening_hours": "24/7", + "parking:fee": "no", + "start_date": "2022-08-08" + } + }, + { + "type": "node", + "id": 9939474360, + "lat": 48.059105, + "lon": 7.2985851, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Au Soleil", + "operator": "Au Soleil", + "socket:type2": "2", + "voltage": "230" + } + }, + { + "type": "node", + "id": 9939724914, + "lat": 46.1815468, + "lon": 6.7029387, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "motor_vehicle": "no", + "name": "eBike Charger", + "operator": "Cycletic" + } + }, + { + "type": "node", + "id": 9941098447, + "lat": 45.1743051, + "lon": 5.2187712, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Le Bourg Saint-Antoine-l'Abbaye", + "operator": "SEDI", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 9941123968, + "lat": 45.174315, + "lon": 5.2187182, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "fee": "no", + "name": "Borne de recharge VAE Saint-Antoine l'Abbaye", + "operator": "SMVIC", + "operator:type": "public" + } + }, + { + "type": "node", + "id": 9941134091, + "lat": 46.9110452, + "lon": 6.3429661, + "tags": { + "access": "private", + "amenity": "charging_station", + "motorcar": "yes", + "network": "SREM2", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "SYDED", + "socket:type1": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9942060620, + "lat": 45.2768548, + "lon": 6.3451363, + "tags": { + "access": "unknown", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "survey:date": "2022-08-09" + } + }, + { + "type": "node", + "id": 9942471374, + "lat": 48.8822427, + "lon": 2.339292, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Belib" + } + }, + { + "type": "node", + "id": 9942534017, + "lat": 45.4090405, + "lon": 4.2513806, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "eborn", + "payment:app": "yes", + "payment:credit_cards": "yes", + "payment:rfid": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9943290882, + "lat": 46.1832182, + "lon": 6.6994995, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Tesla", + "motorcar": "yes", + "operator": "Les Bruyères", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 9944287133, + "lat": 47.2594922, + "lon": 0.4679789, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9945335738, + "lat": 45.4755545, + "lon": 4.4266859, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Eborn", + "payment:app": "yes", + "payment:credit_cards": "yes", + "payment:rfid": "yes" + } + }, + { + "type": "node", + "id": 9945335773, + "lat": 45.4570285, + "lon": 4.4582336, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "e-totem" + } + }, + { + "type": "node", + "id": 9945680317, + "lat": 44.612365, + "lon": 2.6635613, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Révéo", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 9946736963, + "lat": 49.3657231, + "lon": 1.1589486, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9946777563, + "lat": 48.7521979, + "lon": -1.4550205, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Sdem 50" + } + }, + { + "type": "node", + "id": 9947112318, + "lat": 47.9136006, + "lon": 5.3791386, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9947229515, + "lat": 50.6061109, + "lon": 2.8542112, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "name": "Borne de recharge", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Métropole Européenne de Lille", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*M59*P59257001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9947269966, + "lat": 45.2015571, + "lon": 6.7027738, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9947269967, + "lat": 45.2015416, + "lon": 6.702777, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9947270764, + "lat": 45.2024623, + "lon": 6.6987132, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9947270765, + "lat": 45.2024434, + "lon": 6.69874, + "tags": { + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 9947925960, + "lat": 42.5193009, + "lon": 2.8798754, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEEL66 66", + "ref:EU:EVSE": "FR*S66*P66115*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9949112684, + "lat": 43.2308555, + "lon": -1.0931354, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "contact:website": "https://www.mobive.fr/", + "fee": "yes", + "level": "0", + "opening_hours": "24/7", + "operator": "Mobive", + "ref": "013065" + } + }, + { + "type": "node", + "id": 9949755421, + "lat": 45.8818442, + "lon": 0.738168, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "contact:phone": "+33 3 88 68 84 58", + "email": "support@freshmile.com", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Smart WallBox EVB1A22P4ERI", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:website": "https://freshmile.com", + "parking:fee": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "website": "https://charge.freshmile.com/location/EYTZ38P6RI/JTMT1" + } + }, + { + "type": "node", + "id": 9949758018, + "lat": 50.6131917, + "lon": 3.0164893, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "RME" + } + }, + { + "type": "node", + "id": 9949834553, + "lat": 45.0610886, + "lon": 5.344175, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "operator": "Somophone" + } + }, + { + "type": "node", + "id": 9950092044, + "lat": 45.8818421, + "lon": 0.7381733, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "contact:phone": "+33 3 88 68 84 58", + "email": "support@freshmile.com", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Smart WallBox EVB1A22P4RI", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:website": "https://freshmile.com", + "parking:fee": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "0", + "website": "https://charge.freshmile.com/location/EYTZ38P6RI/TTZL1" + } + }, + { + "type": "node", + "id": 9950699475, + "lat": 47.3730876, + "lon": 1.7174174, + "tags": { + "amenity": "charging_station", + "name": "Recharge point E. Leclerc" + } + }, + { + "type": "node", + "id": 9951385787, + "lat": 49.6324338, + "lon": 2.2977184, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Mouv'Oise Charging Station" + } + }, + { + "type": "node", + "id": 9952093218, + "lat": 48.9048902, + "lon": 2.264107, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*43", + "socket:type2": "11", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9952265445, + "lat": 50.1871572, + "lon": 1.7042534, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PCWRWXB", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9952289823, + "lat": 45.2575628, + "lon": 1.4757865, + "tags": { + "addr:street": "Place Allègre", + "amenity": "charging_station", + "description": "2 places avec connecteurs type 2 (22 kW) ou prise domestique\nRéseau Mobive, fonctionne avec pass New Motion, Schell, Charge Mal et carte bancaire via internet.\nAccès limité le vendredi matin en raison du marché.\nBars, restaurants et supérette à proximité", + "name": "Mobive Allassac", + "opening_hours": "Mo-Su 00:00-23:59" + } + }, + { + "type": "node", + "id": 9952692092, + "lat": 45.257571, + "lon": 1.4757943, + "tags": { + "addr:street": "Place Allègre", + "amenity": "charging_station", + "description": "2 emplacements avec connecteurs type 2 (22 kW) et prise domestique", + "name": "Mobive" + } + }, + { + "type": "node", + "id": 9953132620, + "lat": 43.4780696, + "lon": -1.5541117, + "tags": { + "amenity": "charging_station", + "survey:date": "2021-11-11" + } + }, + { + "type": "node", + "id": 9953235017, + "lat": 46.242274, + "lon": 4.7489017, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9953327290, + "lat": 48.2739727, + "lon": -2.1875882, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Kergoët", + "network": "Ionity", + "note": "Accurate position need after update of maps", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge;Maxar" + } + }, + { + "type": "node", + "id": 9953327294, + "lat": 48.2738621, + "lon": -2.1873327, + "tags": { + "amenity": "charging_station", + "network": "Brev'Car", + "source": "knowledge;Ortho HR" + } + }, + { + "type": "node", + "id": 9954244471, + "lat": 41.6727331, + "lon": 8.9181289, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "e-motum" + } + }, + { + "type": "node", + "id": 9956658520, + "lat": 45.240029, + "lon": 0.8293696, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "RossiniEnergy", + "capacity": "2", + "fee": "yes", + "operator": "Huttopia" + } + }, + { + "type": "node", + "id": 9956676227, + "lat": 45.8382237, + "lon": 1.4933074, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "1", + "fee": "yes", + "network": "MObiVE", + "operator": "EVBox", + "operator:wikidata": "Q28406392", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 9956755498, + "lat": 49.1649784, + "lon": 1.3413446, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "operator": "SGA Mobility", + "payment:credit_cards": "yes", + "survey:date": "2022-08" + } + }, + { + "type": "node", + "id": 9956921317, + "lat": 41.4891182, + "lon": 9.0591713, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9957229962, + "lat": 45.1866685, + "lon": 5.7619038, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9957597606, + "lat": 48.870826, + "lon": 2.3541539, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9957597607, + "lat": 48.8708374, + "lon": 2.3541032, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "1" + } + }, + { + "type": "node", + "id": 9957597608, + "lat": 48.8708534, + "lon": 2.3540497, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 9957597609, + "lat": 48.8708648, + "lon": 2.3539919, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 9957839769, + "lat": 46.0856591, + "lon": 5.40571, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "1 Avenue du Parc", + "note": "Hors service pour le moment", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "payment:app": "yes", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "22 kW", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 9959237948, + "lat": 42.9810782, + "lon": 2.0045178, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "name": "Reveo", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11091002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9959411689, + "lat": 45.3224942, + "lon": 6.9988732, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "brand": "Bosch Car Service", + "capacity": "2", + "fee": "no", + "name": "e-bike", + "operator": "Sherpa", + "source": "https://www.haute-maurienne-vanoise.com/ete/offres/borne-de-recharge-vae-bessans-fr-ete-3551840/" + } + }, + { + "type": "node", + "id": 9959444438, + "lat": 48.9592503, + "lon": 3.025861, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9959771957, + "lat": 47.9773625, + "lon": -4.0356599, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "fee": "no", + "manufacturer": "Schneider Electric", + "socket:type2": "4", + "socket:type2:output": "7 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9959791527, + "lat": 43.5162869, + "lon": 4.9887895, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9959791528, + "lat": 43.5163241, + "lon": 4.9889131, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9959791529, + "lat": 43.5163051, + "lon": 4.9888519, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9960245388, + "lat": 46.5710357, + "lon": 3.3241615, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9960355017, + "lat": 41.9284499, + "lon": 8.7649633, + "tags": { + "amenity": "charging_station", + "name": "e motum" + } + }, + { + "type": "node", + "id": 9961172646, + "lat": 16.3158983, + "lon": -61.3451755, + "tags": { + "amenity": "charging_station", + "name": "Borne de recharge de fitness park" + } + }, + { + "type": "node", + "id": 9961172964, + "lat": 48.070692, + "lon": 1.3289885, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9961216382, + "lat": -21.3288215, + "lon": 55.4681721, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "freshmile", + "capacity": "6", + "fee": "yes", + "operator": "freshmile", + "socket:type2": "6" + } + }, + { + "type": "node", + "id": 9961359118, + "lat": 48.7749351, + "lon": 2.495338, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "50", + "fee": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 9961359119, + "lat": 48.7749659, + "lon": 2.4953066, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "100", + "fee": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 9962365601, + "lat": 48.7085683, + "lon": 2.1709452, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "charge": "Réservation 1€, 0/35 €/kWh, 2€/h à partir de la 4ème heure", + "fee": "yes", + "name": "Polytech", + "opening_hours": "24/7", + "operator": "Clem Mobi", + "payment:app": "yes", + "ref": "028", + "socket:type2": "10", + "socket:type2:output": "22 kW", + "socket:typee": "10" + } + }, + { + "type": "node", + "id": 9963570835, + "lat": 45.4799417, + "lon": 4.3543905, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "charge": "0.48€/kWh", + "fee": "yes", + "name": "SEMOB rue Mendes France", + "operator": "e-Totem" + } + }, + { + "type": "node", + "id": 9963705574, + "lat": 44.0710499, + "lon": 1.5338835, + "tags": { + "amenity": "charging_station", + "brand": "SDE 82", + "capacity": "2", + "fee": "yes", + "name": "Nègrepelisse, Lilas", + "network": "Freshmile", + "parking:fee": "no", + "socket:type2": "1", + "socket:type2:ref": "CNYP1", + "socket:type3c": "1", + "socket:type3c:ref": "CXSS1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9963915996, + "lat": 47.9971604, + "lon": 1.2343756, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no" + } + }, + { + "type": "node", + "id": 9965308952, + "lat": 47.1362074, + "lon": 4.0166583, + "tags": { + "amenity": "charging_station", + "name": "Point de recharge (Sieeen)", + "opening_hours": "24/7; 24/7", + "website": "www.sieeen.fr" + } + }, + { + "type": "node", + "id": 9966650574, + "lat": 45.8216219, + "lon": 4.8959758, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "fee": "yes", + "motorcar": "yes", + "network": "Izivia Grand Lyon", + "socket:type2": "2", + "socket:type2:output": "7.4 kW", + "socket:type2_cable:output": "7.4 kW" + } + }, + { + "type": "node", + "id": 9966724918, + "lat": 43.9796887, + "lon": -0.2321464, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "MObiVE", + "source": "survey;website", + "website": "https://www.mobive.fr/trouver-une-borne/" + } + }, + { + "type": "node", + "id": 9966807191, + "lat": 49.1455702, + "lon": -0.3653249, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "KiWhi" + } + }, + { + "type": "node", + "id": 9967272147, + "lat": 47.4664451, + "lon": 3.5209307, + "tags": { + "amenity": "charging_station", + "name": "SIEEEN", + "operator": "SIEEEN" + } + }, + { + "type": "node", + "id": 9967421260, + "lat": 43.9962966, + "lon": 5.1471979, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "SEV", + "payment:debit_cards": "yes", + "website": "https://sev84.fr/" + } + }, + { + "type": "node", + "id": 9967598423, + "lat": 42.7019375, + "lon": 9.4529095, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9968124713, + "lat": 44.9871069, + "lon": 6.1161195, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9968291282, + "lat": 47.2320149, + "lon": 6.0226084, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "no" + } + }, + { + "type": "node", + "id": 9968301509, + "lat": 45.7517488, + "lon": 5.7879352, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9969924562, + "lat": 48.1254711, + "lon": 0.6221171, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Villaines la Gonais", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 9970019317, + "lat": 44.9924189, + "lon": -0.4303038, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "scooter": "no" + } + }, + { + "type": "node", + "id": 9970251460, + "lat": 45.2588162, + "lon": 1.1460052, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9970934670, + "lat": 50.2713883, + "lon": 1.6712391, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "covered": "no", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PRUEVERDUN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9971632818, + "lat": 45.2709083, + "lon": 6.3641829, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2022-08-23" + } + }, + { + "type": "node", + "id": 9972259073, + "lat": 48.7817788, + "lon": 2.2221058, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0.25 €/kWh + 0.10 €/h au-delà de 3h", + "fee": "yes", + "operator": "EDF", + "payment:app": "yes", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9972259074, + "lat": 48.781762, + "lon": 2.2221709, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0.25 €/kWh + 0.10 €/h au-delà de 3h", + "fee": "yes", + "operator": "EDF", + "payment:app": "yes", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9972259075, + "lat": 48.7817417, + "lon": 2.2222393, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0.25 €/kWh + 0.10 €/h au-delà de 3h", + "fee": "yes", + "operator": "EDF", + "payment:app": "yes", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9972395330, + "lat": 48.5561188, + "lon": 3.3036762, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "ComCom du Provinois", + "ref:EU:EVSE": "FR*FR1*PAVYDUIQNKS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9972480634, + "lat": 45.501387, + "lon": 4.849672, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9973064835, + "lat": 46.5805627, + "lon": 3.3216618, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6" + } + }, + { + "type": "node", + "id": 9974460420, + "lat": 47.3960045, + "lon": -0.5268032, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9974787085, + "lat": 43.3965009, + "lon": 3.3352427, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805022318", + "ref:EU:EVSE": "FR*S34*P34300002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9974787086, + "lat": 43.3964519, + "lon": 3.3353654, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805025025", + "ref:EU:EVSE": "FR*S34*P34300001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 9974847834, + "lat": 46.4616261, + "lon": 6.0308893, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "1", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 9974880482, + "lat": 43.7569741, + "lon": 5.8864499, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "description": "CHAdeMO 50kW + Combo CCS 50kW + Type 2 43kW eborn", + "operator": "sde04" + } + }, + { + "type": "node", + "id": 9975133688, + "lat": 46.620676, + "lon": 0.3439221, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9975300152, + "lat": 43.4050324, + "lon": -1.6283363, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Carrefour énergies" + } + }, + { + "type": "node", + "id": 9975300153, + "lat": 43.405064, + "lon": -1.6282712, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Carrefour énergies" + } + }, + { + "type": "node", + "id": 9975300154, + "lat": 43.4050143, + "lon": -1.6283831, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Carrefour énergies" + } + }, + { + "type": "node", + "id": 9975300155, + "lat": 43.4051004, + "lon": -1.6282094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Carrefour énergies" + } + }, + { + "type": "node", + "id": 9975334082, + "lat": 43.3747995, + "lon": -1.6780685, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9975334083, + "lat": 43.3747235, + "lon": -1.6780417, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9975487804, + "lat": 46.5657286, + "lon": 3.3543115, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9977198997, + "lat": 44.283918, + "lon": 6.8650002, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "fee": "no", + "image": "https://i.imgur.com/FqMOzsc.jpg", + "motorcar": "no", + "opening_hours": "24/7", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 9977490508, + "lat": 49.0906723, + "lon": 3.068944, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9979295178, + "lat": 47.3403595, + "lon": 2.8527398, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 9979330718, + "lat": 47.3960702, + "lon": -0.5268974, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9979354622, + "lat": 47.0096426, + "lon": 4.8518671, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "charge": "0,44€ / kWh", + "fee": "yes", + "name": "Electra Beaune - Greet Hotel", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "225 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fM2U1ZTY2MWMtNGFiMi0xMWVjLTliNWMtMmIyNWUxMjUxZmU2" + } + }, + { + "type": "node", + "id": 9979425119, + "lat": 48.4443599, + "lon": 0.0573126, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "network": "TN61", + "operator": "Territoire d'énergie", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9980119147, + "lat": 47.8233935, + "lon": 1.6977645, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "fee": "no", + "motorcar": "no", + "name": "Recharge vélo Meung-sur-Loire", + "operator": "Terres de Loire", + "scooter": "no" + } + }, + { + "type": "node", + "id": 9981131385, + "lat": 45.4994844, + "lon": 3.2472399, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "e-Totem" + } + }, + { + "type": "node", + "id": 9981500622, + "lat": 16.2069916, + "lon": -61.5016895, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9981522459, + "lat": 49.2781493, + "lon": 4.0037222, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 9981579542, + "lat": 46.0806441, + "lon": -1.0790422, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "ref": "MAT-013312" + } + }, + { + "type": "node", + "id": 9985928872, + "lat": 45.7302456, + "lon": 4.8877795, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "operator": "Izivia (groupe EDF)" + } + }, + { + "type": "node", + "id": 9986650619, + "lat": 49.036889, + "lon": 3.4086916, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9986650620, + "lat": 49.0369319, + "lon": 3.4086695, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "DIRVE 02", + "opening_hours": "24/7", + "operator": "Freshmile", + "owner": "USEDA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9988324773, + "lat": 45.257574, + "lon": 1.4757811, + "tags": { + "amenity": "charging_station", + "name": "Place Allègre" + } + }, + { + "type": "node", + "id": 9988416552, + "lat": 48.5447596, + "lon": 7.7399996, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes", + "operator": "Auchan" + } + }, + { + "type": "node", + "id": 9988483771, + "lat": 46.9582916, + "lon": 3.7426751, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "name": "recharge vélo elec", + "note": "Attention, cette station de recharge est uniquement destinée aux vélos électriques", + "operator": "association Le Barrage", + "website": "lebarrage.fr" + } + }, + { + "type": "node", + "id": 9989138461, + "lat": 43.5736536, + "lon": 1.4525895, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 9989968315, + "lat": 42.2149851, + "lon": 9.5504162, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9989968316, + "lat": 42.215002, + "lon": 9.5504142, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9990253158, + "lat": 45.4781798, + "lon": 4.5162283, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "e-totem", + "capacity": "2", + "charge": "0.37 € / kWh", + "charging_station:current": "77", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "SEMOB HOTEL DIEU ST CHAMOND", + "network": "Saint-Étienne Électro Mobilité (SEMOB)", + "opening_hours": "24/7", + "operator": "e-totem", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:chademo:voltage": "400", + "socket:type2_cable": "1", + "socket:type2_cable:output": "22 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "socket:type2_combo:voltage": "400" + } + }, + { + "type": "node", + "id": 9991310065, + "lat": 48.1940348, + "lon": 6.4647387, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 9991378408, + "lat": 46.6654971, + "lon": 0.3588935, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Campanile Futuroscope", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Campanile Futuroscope", + "ref:EU:EVSE": "FR*SSD*PCAMPANILE86360*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9991378410, + "lat": 46.6705409, + "lon": 0.3634709, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "BSP", + "operator": "BORNES SOLUTIONS", + "owner": "FMD", + "ref:EU:EVSE": "FR*BSP*P86360000000001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 9991453788, + "lat": 44.0709656, + "lon": 7.2218692, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Station Valdeblore - Parking Colmiane", + "operator": "Métropole Nice Côte d'Azur", + "ref": "MAT007193", + "website": "https://prisedenice.fr/portal/#/" + } + }, + { + "type": "node", + "id": 9992658871, + "lat": 45.4777421, + "lon": 4.5095981, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "e-totem", + "capacity": "2", + "charge": "0.37 € / kWh", + "charging_station:current": "64", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "SEMOB WALDECK ROUSSEAU", + "network": "Saint-Étienne Électro Mobilité (SEMOB)", + "opening_hours": "24/7", + "operator": "e-totem", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2_cable": "1", + "socket:type2_cable:output": "25 kW", + "socket:type2_cable:voltage": "400" + } + }, + { + "type": "node", + "id": 9992658872, + "lat": 45.4771702, + "lon": 4.5055135, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "e-totem", + "capacity": "2", + "charge": "0.48 € / kWh", + "charging_station:current": "77", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "SEMOB MELCHIOR MITTE", + "network": "Saint-Étienne Électro Mobilité (SEMOB)", + "opening_hours": "24/7", + "operator": "e-totem", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:chademo:voltage": "400", + "socket:type2_cable": "1", + "socket:type2_cable:output": "22 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "socket:type2_combo:voltage": "400" + } + }, + { + "type": "node", + "id": 9992658875, + "lat": 45.4710532, + "lon": 4.5085426, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "e-totem", + "capacity": "2", + "charge": "0.37 € / kWh", + "charging_station:current": "64", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "SEMOB NOVACIERIES", + "network": "Saint-Étienne Électro Mobilité (SEMOB)", + "opening_hours": "24/7", + "operator": "e-totem", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2_cable": "1", + "socket:type2_cable:output": "25 kW", + "socket:type2_cable:voltage": "400" + } + }, + { + "type": "node", + "id": 9992658876, + "lat": 45.4670778, + "lon": 4.5052106, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "e-totem", + "capacity": "2", + "charge": "0.37 € / kWh", + "charging_station:current": "64", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "SEMOB ROYET DE LA BASTIE", + "network": "Saint-Étienne Électro Mobilité (SEMOB)", + "opening_hours": "24/7", + "operator": "e-totem", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2_cable": "1", + "socket:type2_cable:output": "25 kW", + "socket:type2_cable:voltage": "400" + } + }, + { + "type": "node", + "id": 9992658877, + "lat": 45.458034, + "lon": 4.5037626, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "brand": "e-totem", + "capacity": "2", + "charge": "0.37 € / kWh", + "charging_station:current": "64", + "covered": "no", + "fee": "yes", + "level": "0", + "name": "SEMOB LOUIS COMTE ST CHAMOND", + "network": "Saint-Étienne Électro Mobilité (SEMOB)", + "opening_hours": "24/7", + "operator": "e-totem", + "parking:fee": "no", + "payment:contactless": "yes", + "socket:type2_cable": "1", + "socket:type2_cable:output": "25 kW", + "socket:type2_cable:voltage": "400" + } + }, + { + "type": "node", + "id": 9993294880, + "lat": 47.0219206, + "lon": -0.70343, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SIEML", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "17", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 9994549911, + "lat": 49.1751567, + "lon": -0.6254583, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4", + "motorcar": "no", + "operator": "MobiSDEC" + } + }, + { + "type": "node", + "id": 9994549912, + "lat": 49.1749897, + "lon": -0.6249681, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "note": "Observation mais sans integration a posteriori via Osmose", + "operator": "MobiSDEC" + } + }, + { + "type": "node", + "id": 9994978612, + "lat": 44.7884562, + "lon": 5.6381622, + "tags": { + "amenity": "charging_station", + "name": "eborn" + } + }, + { + "type": "node", + "id": 9996741308, + "lat": 46.9638276, + "lon": 4.8363998, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Relais Beaune Tailly", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF059042" + } + }, + { + "type": "node", + "id": 9996916023, + "lat": 43.6229432, + "lon": 7.0517603, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Valbonne Parking Dojo", + "operator": "WiiiZ" + } + }, + { + "type": "node", + "id": 9998533742, + "lat": 45.6648809, + "lon": 4.8946068, + "tags": { + "access": "yes", + "amenity": "charging_station", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 9999961765, + "lat": 44.0238338, + "lon": 4.8895074, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Avia", + "ref": "MAT-018471", + "socket:chademo": "2", + "socket:chademo:output": "54", + "socket:type2": "1", + "socket:type2:output": "43", + "socket:type2_combo": "2", + "socket:type2_combo:output": "54" + } + }, + { + "type": "node", + "id": 9999961768, + "lat": 44.0245353, + "lon": 4.889608, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "name": "IONITY Sorgues", + "network": "Ionity", + "operator": "IOnity", + "ref:EU:EVSE": "FR*ION*E423453", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 9999961769, + "lat": 44.0243832, + "lon": 4.8896228, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Sorgues", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "IOnity", + "ref:EU:EVSE": "FR*ION*E423406", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350" + } + }, + { + "type": "node", + "id": 9999961770, + "lat": 44.0243516, + "lon": 4.8896278, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Sorgues", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "ref:EU:EVSE": "FR*ION*E423407", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350" + } + }, + { + "type": "node", + "id": 9999961771, + "lat": 44.0245098, + "lon": 4.889603, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Sorges", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "ref:EU:EVSE": "FR*ION*E423402", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350" + } + }, + { + "type": "node", + "id": 9999961772, + "lat": 44.0244149, + "lon": 4.8896179, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Sorgues", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "ref:EU:EVSE": "FR*ION*E423405", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350" + } + }, + { + "type": "node", + "id": 9999961773, + "lat": 44.0244465, + "lon": 4.8896129, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Sorgues", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "ref:EU:EVSE": "FR*ION*E423404", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350" + } + }, + { + "type": "node", + "id": 9999961774, + "lat": 44.0244781, + "lon": 4.889608, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Sorgues", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "ref:EU:EVSE": "FR*ION*E423403", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350" + } + }, + { + "type": "node", + "id": 10000353937, + "lat": 45.5835335, + "lon": 5.9012502, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PFA3KQKMH2K", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10000369035, + "lat": 47.5232511, + "lon": -1.1831599, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sydego" + } + }, + { + "type": "node", + "id": 10001274932, + "lat": 49.3541382, + "lon": 0.0570764, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "MobiSDEC", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "website": "https://charge.freshmile.com/location/LMAJAU9VM3" + } + }, + { + "type": "node", + "id": 10001910885, + "lat": 50.3928745, + "lon": 2.9764724, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10001973096, + "lat": 45.9168889, + "lon": 6.6983504, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10002105269, + "lat": 47.1346736, + "lon": 5.5021972, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10002211492, + "lat": 43.9152293, + "lon": 4.5094681, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30145*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10004208008, + "lat": 49.3427963, + "lon": -0.6919912, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "9", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 10004727876, + "lat": 43.7315092, + "lon": 3.3229103, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "3", + "fee": "no", + "name": "Tesla Destination Charger", + "operator": "HOTEL DE LA PAIX", + "short_name": "Tesla", + "website": "www.hotel-de-la-Paix.com" + } + }, + { + "type": "node", + "id": 10004727877, + "lat": 43.731234, + "lon": 3.3231034, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "eCHARGE", + "capacity": "2", + "charge": "0,040", + "fee": "yes", + "operator": "ZEPHYRE", + "payment:app": "yes", + "payment:paypal": "yes" + } + }, + { + "type": "node", + "id": 10005223220, + "lat": 43.7245351, + "lon": 3.3236872, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10005223222, + "lat": 43.6893565, + "lon": 3.355399, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "9", + "operator": "Enerstock", + "ref:EU:EVSE": "FR*ENR*E0274;FR*ENR*E0275;FR*ENR*E0276;FR*ENR*E0277;FR*ENR*E0278;FR*ENR*E0279;FR*ENR*E0280;FR*ENR*E0281;FR*ENR*E0282", + "socket:type2": "9", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10006243132, + "lat": 49.0922419, + "lon": 2.5285621, + "tags": { + "amenity": "charging_station", + "branch": "Community by Shell Recharge", + "capacity": "30", + "name": "Borne recharge Brico Dépôt Saint-Witz", + "operator": "Shell Recharge Solutions", + "operator:wikidata": "Q105883058" + } + }, + { + "type": "node", + "id": 10006345639, + "lat": 45.6441695, + "lon": 6.3313671, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10006461500, + "lat": 46.6673646, + "lon": 0.3648249, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461501, + "lat": 46.6673282, + "lon": 0.3649119, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461502, + "lat": 46.6672828, + "lon": 0.364993, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461503, + "lat": 46.6672121, + "lon": 0.3650401, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461504, + "lat": 46.6667609, + "lon": 0.3653447, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461505, + "lat": 46.6670364, + "lon": 0.364694, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461506, + "lat": 46.6670777, + "lon": 0.3645971, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006461507, + "lat": 46.6671154, + "lon": 0.3645111, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10006492735, + "lat": 46.6674642, + "lon": 0.3610688, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10006492736, + "lat": 46.6682881, + "lon": 0.3618037, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10009245868, + "lat": 48.5908442, + "lon": 0.6521392, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "61Mobility", + "website": "https://61mobility.fr/home" + } + }, + { + "type": "node", + "id": 10010061298, + "lat": 48.9757199, + "lon": 4.4680657, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10010137584, + "lat": 48.8314657, + "lon": 2.3200126, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "belib" + } + }, + { + "type": "node", + "id": 10010887344, + "lat": 49.0922189, + "lon": 2.5285489, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "Community by Shell Recharge", + "payment:app": "yes" + } + }, + { + "type": "node", + "id": 10011706010, + "lat": 48.6741826, + "lon": 2.3151369, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "note": "22 kVA" + } + }, + { + "type": "node", + "id": 10011814718, + "lat": 43.8465191, + "lon": 6.5152545, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10012835406, + "lat": 44.1881275, + "lon": 6.7482551, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10013235721, + "lat": 42.701864, + "lon": 3.0219859, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10013278622, + "lat": 44.9742488, + "lon": 1.3232243, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Mobive", + "survey:date": "2022-09-10" + } + }, + { + "type": "node", + "id": 10013443882, + "lat": 45.257527, + "lon": 1.4756943, + "tags": { + "addr:street": "Place Allègre", + "amenity": "charging_station", + "name": "Mobive Allassac" + } + }, + { + "type": "node", + "id": 10013461817, + "lat": 45.1203735, + "lon": 5.6885257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2022-09-10" + } + }, + { + "type": "node", + "id": 10013461917, + "lat": 45.1203995, + "lon": 5.6885721, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2022-09-10" + } + }, + { + "type": "node", + "id": 10013695717, + "lat": 44.0929873, + "lon": 5.4088529, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10015152517, + "lat": 48.8094089, + "lon": -0.4998591, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10017515571, + "lat": 44.0242381, + "lon": 5.0511104, + "tags": { + "access": "unknown", + "amenity": "charging_station", + "capacity": "2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10017564426, + "lat": 44.1204219, + "lon": 5.1786782, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "Vauclus'Elec (SEV84)", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typef": "2", + "socket:typef:output": "4" + } + }, + { + "type": "node", + "id": 10017635123, + "lat": 49.9258577, + "lon": 1.0727666, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10017775798, + "lat": 46.5917369, + "lon": 1.5178363, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "name": "Chargelec 36", + "opening_hours": "24/7", + "operator": "SDEI", + "socket:type2": "1", + "socket:type3": "1" + } + }, + { + "type": "node", + "id": 10018733796, + "lat": 45.9043501, + "lon": 5.6782009, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "designated", + "fee": "no", + "operator": "Bugey Sud" + } + }, + { + "type": "node", + "id": 10020516475, + "lat": 47.9908176, + "lon": 2.7092488, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10021855020, + "lat": 43.6424133, + "lon": 1.452681, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "name": "Allego", + "operator": "Allego" + } + }, + { + "type": "node", + "id": 10021860815, + "lat": 44.46514, + "lon": 1.1915231, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Reveo" + } + }, + { + "type": "node", + "id": 10026257808, + "lat": 42.5522847, + "lon": 2.976663, + "tags": { + "access": "yes", + "amenity": "charging_station", + "name": "power dot" + } + }, + { + "type": "node", + "id": 10026403666, + "lat": 50.3200075, + "lon": 3.5121391, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "Valenciennes Métropole", + "ref:EU:EVSE": "FR*SOD*S*NPDC*261*1*_*_", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10026849948, + "lat": 43.8243311, + "lon": 5.3067166, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "operator": "Vauclus'elec", + "source": "survey" + } + }, + { + "type": "node", + "id": 10027050947, + "lat": 45.7783606, + "lon": 1.2046563, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SEHV" + } + }, + { + "type": "node", + "id": 10027058840, + "lat": 45.509784, + "lon": 1.2024307, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "sehv" + } + }, + { + "type": "node", + "id": 10028054788, + "lat": 48.9586133, + "lon": 2.1510071, + "tags": { + "amenity": "charging_station", + "capacity": "50kw", + "covered": "no", + "fee": "yes", + "name": "Sigeif", + "operator": "Sigeif", + "operator:wikidata": "Q3508360" + } + }, + { + "type": "node", + "id": 10028231451, + "lat": 46.1204223, + "lon": 1.0508868, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MOBIVE - SEHV87" + } + }, + { + "type": "node", + "id": 10028890274, + "lat": 46.6588119, + "lon": 0.3647667, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10028890275, + "lat": 46.6587505, + "lon": 0.3647359, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:domestic": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10028890276, + "lat": 46.6586902, + "lon": 0.3646964, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:domestic": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10029045164, + "lat": 48.8019413, + "lon": 2.1303015, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Electric 55 Charging", + "socket:domestic": "1", + "socket:type2": "1", + "socket:type2:output": "22kW", + "source": "survey", + "survey:date": "2022-09-15" + } + }, + { + "type": "node", + "id": 10029045165, + "lat": 48.8019283, + "lon": 2.130345, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Electric 55 Charging", + "socket:domestic": "1", + "socket:type2": "1", + "socket:type2:output": "7kW", + "source": "survey", + "survey:date": "2022-09-15" + } + }, + { + "type": "node", + "id": 10029783092, + "lat": 45.7108938, + "lon": 4.867276, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 10029893847, + "lat": 44.8080223, + "lon": 4.3514924, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "no", + "operator": "eborn", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10030206542, + "lat": 43.1872948, + "lon": 5.6228875, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "covered": "no", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:output": "7 kW", + "socket:type2:voltage": "230" + } + }, + { + "type": "node", + "id": 10030692362, + "lat": -21.282542, + "lon": 55.517307, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "22", + "fee": "no", + "name": "Borne de recharge Leclerc 2", + "operator": "Leclerc" + } + }, + { + "type": "node", + "id": 10030692363, + "lat": -21.2819986, + "lon": 55.5182652, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "22", + "fee": "no", + "name": "Borne de recharge Leclerc 1", + "operator": "Leclerc" + } + }, + { + "type": "node", + "id": 10031075817, + "lat": 45.4374881, + "lon": -0.4200547, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Cette borne fonctionne seulement lors de l'ouverture du centre.", + "operator": "Communauté des Communes de la Haute-Saintonge", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2022-09-17" + } + }, + { + "type": "node", + "id": 10031134217, + "lat": 50.6153922, + "lon": 3.0143502, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "RME Loos", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PRJFZVVGX8O", + "socket:type2": "1", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10031424671, + "lat": 47.4755531, + "lon": -0.5589247, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Boulevard Arago", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10031732915, + "lat": 48.1266142, + "lon": 0.6233558, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY La Ferté Bernard", + "note": "accurate position need", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10031747772, + "lat": 16.416432, + "lon": -61.5144986, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10031869156, + "lat": 43.0628215, + "lon": 0.1462817, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 10033376945, + "lat": 46.1403496, + "lon": 3.440489, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-11-01" + } + }, + { + "type": "node", + "id": 10034260838, + "lat": 48.6943018, + "lon": 6.1292513, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 10038583748, + "lat": 43.9501182, + "lon": 4.8081402, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "1", + "covered": "yes", + "fee": "no", + "name": "Tesla Destination Charger", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 10042808003, + "lat": 49.2263869, + "lon": -0.3655073, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10042808006, + "lat": 49.2280882, + "lon": -0.3679119, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10042808007, + "lat": 49.2282559, + "lon": -0.3674197, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10046910326, + "lat": 49.0547536, + "lon": 2.1220887, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10048944350, + "lat": 47.3251064, + "lon": 0.7139547, + "tags": { + "access": "yes", + "addr:city": "Chambray-lès-Tours", + "addr:country": "FR", + "addr:housenumber": "213-215", + "addr:postcode": "37170", + "addr:street": "Avenue du Grand S", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "24", + "charge": "0,67 EUR/kWh", + "charging_station:output": "250 kW", + "fee": "yes", + "name": "Chambray-lès-Tours Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "24", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chambraylestourssupercharger" + } + }, + { + "type": "node", + "id": 10049022986, + "lat": 48.8766859, + "lon": 2.2926444, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Belib" + } + }, + { + "type": "node", + "id": 10049348220, + "lat": 51.0037371, + "lon": 2.1098137, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "currency:EUR": "yes", + "fee": "yes", + "survey:date": "2022-09-20" + } + }, + { + "type": "node", + "id": 10049421878, + "lat": 48.0573985, + "lon": 4.9594305, + "tags": { + "access": "customers", + "addr:city": "Châteauvillain", + "addr:street": "A5 - Aire de Châteauvillain-Val Marnay", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "6", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "Aire de Châteauvillain - Val Marnay Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "6", + "socket:tesla_supercharger:output": "150 kW", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "150 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chateauvillainvalmarnaysupercharger" + } + }, + { + "type": "node", + "id": 10049547477, + "lat": 43.5312891, + "lon": 1.7554323, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10050593408, + "lat": 43.980546, + "lon": 4.8798331, + "tags": { + "access": "yes", + "addr:city": "Le Pontet", + "addr:country": "FR", + "addr:housenumber": "533", + "addr:postcode": "84130", + "addr:street": "avenue Louis Braille", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Avignon - le Pontet Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/Avignonq222" + } + }, + { + "type": "node", + "id": 10050645589, + "lat": 47.0430703, + "lon": 4.8412501, + "tags": { + "access": "yes", + "addr:city": "Beaune", + "addr:housenumber": "88-102", + "addr:postcode": "21200", + "addr:street": "Route de Savigny", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Beaune Nord Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/beaunenordsupercharger" + } + }, + { + "type": "node", + "id": 10050753807, + "lat": 43.647638, + "lon": 1.3697157, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "contact:housenumber": "2", + "contact:phone": "Blagnac", + "contact:postcode": "31715", + "contact:street": "Allée Emile Zola - Zac du Grand Noble", + "fee": "yes", + "name": "Blagnac Supercharger", + "network": "Tesla Supercharger", + "network:wikidata": "Q17089620", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/ToulouseBlagnacFrancesupercharger" + } + }, + { + "type": "node", + "id": 10050793548, + "lat": 49.3596492, + "lon": 0.8176817, + "tags": { + "access": "yes", + "addr:city": "Bourg-Achard", + "addr:country": "FR", + "addr:housenumber": "510", + "addr:postcode": "27310", + "addr:street": "Rue du Docteur Duvrac", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Bourg-Achard Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/BourgAchardSupercharger" + } + }, + { + "type": "node", + "id": 10050817548, + "lat": 44.7937696, + "lon": -0.5331475, + "tags": { + "access": "customers", + "addr:city": "Bègles", + "addr:postcode": "33130", + "addr:street": "Centre Commercial Rives d'Arcins", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Bègles Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/BordeauxEstFrancesupercharger" + } + }, + { + "type": "node", + "id": 10050832775, + "lat": 48.4303478, + "lon": -4.4699918, + "tags": { + "access": "yes", + "addr:city": "Gouesnou", + "addr:postcode": "29850", + "addr:street": "Kergaradec - Centre Commercial E. Leclerc", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Brest Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/Brestq222" + } + }, + { + "type": "node", + "id": 10050858667, + "lat": 48.4457492, + "lon": 1.5390927, + "tags": { + "access": "yes", + "addr:city": "Chartres", + "addr:housenumber": "24", + "addr:postcode": "28000", + "addr:street": "Avenue Gustave Eiffel", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Chartres Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chartresfrsupercharger" + } + }, + { + "type": "node", + "id": 10050875661, + "lat": 46.8357916, + "lon": 0.541946, + "tags": { + "access": "yes", + "addr:city": "Châtellerault", + "addr:housenumber": "25", + "addr:postcode": "86100", + "addr:street": "rue de la Désirée", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Châtellerault Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/chatelleraultsuperchargerq122" + } + }, + { + "type": "node", + "id": 10050897400, + "lat": 48.1291885, + "lon": 7.3688226, + "tags": { + "access": "yes", + "addr:city": "Houssen", + "addr:postcode": "68125", + "addr:street": "Rue du Buhlfeld", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "12", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Colmar Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/colmarsupercharger" + } + }, + { + "type": "node", + "id": 10051015625, + "lat": 49.0795432, + "lon": 6.103718, + "tags": { + "access": "yes", + "addr:city": "Moulins-lès-Metz", + "addr:housenumber": "1", + "addr:postcode": "57160", + "addr:street": "Chemin de la Pie Grièche", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Metz Sud Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/MetzSudfrsupercharger" + } + }, + { + "type": "node", + "id": 10051018252, + "lat": 44.0364007, + "lon": 1.3783895, + "tags": { + "access": "yes", + "addr:city": "Montauban", + "addr:housenumber": "445", + "addr:postcode": "82000", + "addr:street": "Route du Nord", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Montauban Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/MontaubanSupercharger" + } + }, + { + "type": "node", + "id": 10051060009, + "lat": 43.6023477, + "lon": 3.9201361, + "tags": { + "access": "customers", + "addr:city": "Montpellier", + "addr:postcode": "34000", + "addr:street": "Centre Commercial Odysseum - Parking de la Mer", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Montpellier Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/montpellierfrsupercharger" + } + }, + { + "type": "node", + "id": 10051162379, + "lat": 45.6409932, + "lon": 5.873808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PFBYQDSUWIU", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10051162380, + "lat": 45.6409589, + "lon": 5.8736298, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*POH9QA6KXPK", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10051164238, + "lat": 50.7420238, + "lon": 3.1446626, + "tags": { + "access": "yes", + "addr:city": "Neuville-en-Ferrain", + "addr:housenumber": "1", + "addr:postcode": "59960", + "addr:street": "Route de Roncq", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Neuville-en-Ferrain Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/NeuvilleenFerrainq222" + } + }, + { + "type": "node", + "id": 10051271503, + "lat": 45.6469639, + "lon": 5.8706342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*POYKRAJWUI5", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10051430460, + "lat": 45.718275, + "lon": 5.922964, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PQH3MXFSZJA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10051598110, + "lat": 46.5475783, + "lon": 0.2956523, + "tags": { + "access": "yes", + "addr:city": "Croutelle", + "addr:housenumber": "6", + "addr:postcode": "86240", + "addr:street": "Rue de la Saulaie", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "28", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Poitiers Sud Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/PoitiersSudq222" + } + }, + { + "type": "node", + "id": 10051620472, + "lat": 45.6440639, + "lon": 5.8680881, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDES - Savoie accélérée", + "ref:EU:EVSE": "FR*EBN*PPH6VWTTSVI", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10051641050, + "lat": 45.7854818, + "lon": 4.7832036, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0.44€ / kWh", + "fee": "yes", + "name": "Electra Écully - Smart Lyon Écully", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNmE1M2JlYzItYWVhNi0xMWVjLWE2MWItYWY3NTQ2MjhlOGZh" + } + }, + { + "type": "node", + "id": 10051672774, + "lat": 47.6085127, + "lon": 7.5027746, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Electra Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "225 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fZDNkYWU5YTItZjNjOS0xMWVjLTlhZTctNWYzMWI5ZWQ4YWQ5" + } + }, + { + "type": "node", + "id": 10051752413, + "lat": 50.9273672, + "lon": 1.8073121, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Electra Coquelles - Channel Outlet", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNGQwN2FiY2MtMTQxYy0xMWVkLWFlZjYtNzNhZjBlN2Q4Mzg3" + } + }, + { + "type": "node", + "id": 10051769724, + "lat": 49.8588901, + "lon": 3.2536398, + "tags": { + "access": "yes", + "addr:city": "Saint-Quentin", + "addr:housenumber": "29", + "addr:postcode": "02100", + "addr:street": "Route d'Amiens", + "amenity": "charging_station", + "brand": "Tesla, Inc.", + "brand:wikidata": "Q478214", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Saint-Quentin Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/SaintQuentinq222" + } + }, + { + "type": "node", + "id": 10051778755, + "lat": 43.1167488, + "lon": 0.7669834, + "tags": { + "access": "customers", + "addr:city": "Estancarbon", + "addr:postcode": "31800", + "addr:street": "10 ZAC des Landes, Avenue du Cagire", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "8", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Saint-Gaudens Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/SaintGaudensSupercharger" + } + }, + { + "type": "node", + "id": 10051811132, + "lat": 46.1298395, + "lon": 6.0876078, + "tags": { + "access": "yes", + "addr:city": "Saint-Julien-en-Genevois", + "addr:housenumber": "9000", + "addr:postcode": "74160", + "addr:street": "Route d'Annecy", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Saint-Julien-en-Genevois Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/saintjulienengenevoissuperchargerq122" + } + }, + { + "type": "node", + "id": 10051825305, + "lat": 45.7536578, + "lon": -0.6532996, + "tags": { + "access": "yes", + "addr:city": "Saintes", + "addr:postcode": "17100", + "addr:street": "Cours du Maréchal Leclerc", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Saintes Nord Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/saintesnordsupercharger" + } + }, + { + "type": "node", + "id": 10051960919, + "lat": 46.5773474, + "lon": 4.8993862, + "tags": { + "access": "yes", + "addr:city": "Tournus", + "addr:postcode": "71700", + "addr:street": "Rue Georges Mazoyer", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "20", + "charge": "0,67 EUR/kWh", + "fee": "yes", + "name": "Tournus Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW" + } + }, + { + "type": "node", + "id": 10052081638, + "lat": 47.481706, + "lon": -0.5026509, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Saint-Barthélemy-d'Anjou - RS Parc", + "opening_hours": "24/7", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNmRiMjM4OTQtZGI2Mi0xMWVjLWI3OTUtN2I0MWJmMWQ4YWEz" + } + }, + { + "type": "node", + "id": 10053154930, + "lat": 45.9168785, + "lon": 6.691628, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "charge": "0,44€ / kWh", + "fee": "yes", + "name": "Electra Passy - Decathlon Mountain Store", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "225 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fYWUyY2EzZjAtZGE3Yy0xMWVjLWFmODctYmZkNTJiODdjYTQy" + } + }, + { + "type": "node", + "id": 10053196382, + "lat": 44.7885154, + "lon": -0.6450095, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44€ / kWh", + "fee": "yes", + "name": "Electra Pessac - Hôtel Première Classe", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fOGYwYTk0OTYtZGE5NS0xMWVjLTg3MzItNTMwNDhlMDZmN2Vk" + } + }, + { + "type": "node", + "id": 10053229767, + "lat": 44.7840973, + "lon": -0.5872725, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44€ / kWh", + "fee": "yes", + "name": "Electra Villenave-d'Ornon - Best Hotel", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fOTQ0MGI3MWUtZGI2My0xMWVjLTg3NzAtZTdmYmQ2OTI3Mjg5" + } + }, + { + "type": "node", + "id": 10053272960, + "lat": 43.9846217, + "lon": 4.8862526, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "charge": "0,44€ / kWh", + "fee": "yes", + "name": "Electra Sorgues - Décor Discount", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "225 kW" + } + }, + { + "type": "node", + "id": 10053633557, + "lat": 48.9057389, + "lon": 2.4569393, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44# / kWh", + "fee": "yes", + "name": "Electra Bobigny - Hôtel Campanile", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fZjBmYTE2NWEtZjNkMC0xMWVjLWFhMzAtOWZmM2UwNGEwYjVk" + } + }, + { + "type": "node", + "id": 10053691822, + "lat": 44.8912914, + "lon": -0.5658738, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "charge": "0,44# / kWh", + "fee": "yes", + "name": "Electra Bordeaux - Novotel Bordeaux Lac", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "225 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fOGQzMGMzN2EtNGFiMi0xMWVjLWE2NmUtNmYzYjZmZGZlYmE3" + } + }, + { + "type": "node", + "id": 10053739345, + "lat": 48.7613661, + "lon": 1.9147345, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44€ / kWh", + "fee": "yes", + "name": "Electra Maurepas - CC - Village des loisirs", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fMzVkYzg2YTgtNGFiMy0xMWVjLTliNWMtZTNkMjZmZmZlNjI1" + } + }, + { + "type": "node", + "id": 10053754329, + "lat": 48.6788536, + "lon": 2.1985969, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "charge": "0,44€ / kWh", + "email": "help@electra.com", + "fee": "yes", + "motorcar": "yes", + "name": "Electra Les Ulis - Hôtel Mercure", + "network": "ELECTRA", + "opening_hours": "24/7", + "operator": "ELECTRA", + "owner": "ELECTRA", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*ELC*PULIHM", + "reservation": "yes", + "socket:type2_combo": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fMTI1OGMwODQtNGFiMy0xMWVjLTliNWMtMWJkZTlkZjcxMGI4" + } + }, + { + "type": "node", + "id": 10054372643, + "lat": 48.3368611, + "lon": 7.2886309, + "tags": { + "amenity": "charging_station", + "brand": "Hager", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10055178887, + "lat": 46.1142675, + "lon": 5.4934534, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Relais Ceignes Cerdon", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078387" + } + }, + { + "type": "node", + "id": 10055184018, + "lat": 46.0975162, + "lon": 5.9630695, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "fixme": "Position à affiner quand photos dispo", + "name": "Relais de Valleiry Nord", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF080288" + } + }, + { + "type": "node", + "id": 10055197254, + "lat": 45.2788353, + "lon": 5.6235902, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "name": "Relais Voreppe", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF007502" + } + }, + { + "type": "node", + "id": 10055403457, + "lat": 46.4186965, + "lon": 4.8653331, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "Relais Macon La Salle", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF059190" + } + }, + { + "type": "node", + "id": 10055436717, + "lat": 43.215578, + "lon": 3.093979, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "email": "ms.eur-fr-res-recelecirve@totalenergies.com", + "fee": "yes", + "motorcar": "yes", + "name": "Aire Narbonne Vinassan Sud", + "network": "Total Charge Rapide", + "opening_hours": "24/7", + "operator": "Total Energies", + "owner": "TotalEnergies", + "payment:website": "yes", + "phone": "+33141354000", + "ref:EU:EVSE": "FR*HPC*PNF059472", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "8", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF059472", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10055437200, + "lat": 47.7170496, + "lon": 7.1381243, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Relais La Porte d'Alsace Nord", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points" + } + }, + { + "type": "node", + "id": 10056190448, + "lat": 49.0673252, + "lon": 2.3205185, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*61", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10056232450, + "lat": 48.5622428, + "lon": 2.6018781, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "2 EUR", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10056457904, + "lat": 48.7684923, + "lon": 1.5128785, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10056721012, + "lat": 47.0208738, + "lon": -0.9227423, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "6", + "name": "FDI Access" + } + }, + { + "type": "node", + "id": 10057244857, + "lat": 49.7389672, + "lon": 0.3572789, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "1.92 EUR/hour", + "fee": "yes", + "motorcar": "yes", + "operator": "SDE76" + } + }, + { + "type": "node", + "id": 10057984731, + "lat": 46.057472, + "lon": 3.1168707, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "TotalEnergies Aire des volcans d'Auvergne Saint Agoulin", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "payment:website": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "175 kW", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF070641" + } + }, + { + "type": "node", + "id": 10058909027, + "lat": 49.8687099, + "lon": 2.371398, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR25", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PG1QR7RBCW6", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10059027705, + "lat": 48.6662176, + "lon": 2.5586179, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "name": "Stations-e", + "operator": "Station-e" + } + }, + { + "type": "node", + "id": 10060054104, + "lat": 46.7479578, + "lon": 4.4936585, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Relais rond point Jeanne Rose", + "operator": "Total Energies", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF070668" + } + }, + { + "type": "node", + "id": 10060061507, + "lat": 48.5847811, + "lon": -1.3258116, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Relais Le Mont Saint Michel", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078244" + } + }, + { + "type": "node", + "id": 10060062127, + "lat": 46.7158969, + "lon": 1.5934899, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Relais Mille Etangs", + "operator": "Total Energies", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078238-001" + } + }, + { + "type": "node", + "id": 10060437367, + "lat": 48.4567203, + "lon": 0.1253448, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Relais la dentelle d'Alençon", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078556" + } + }, + { + "type": "node", + "id": 10060483719, + "lat": 49.5922101, + "lon": 4.5049282, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "email": "ms.eur-fr-res-recelecirve@totalenergies.com", + "fee": "yes", + "motorcar": "yes", + "name": "Relais Ardennes-Woinic", + "network": "Total Charge Rapide", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "TotalEnergies", + "payment:website": "yes", + "phone": "+33141354000", + "ref:EU:EVSE": "FR*HPC*PNF078601", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "8", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF078601", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10060542117, + "lat": 45.9080328, + "lon": 6.1215949, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "opening_hours": "24/7", + "operator": "eborn", + "survey:date": "2022-09-29", + "website": "http://eborn.fr/" + } + }, + { + "type": "node", + "id": 10060544517, + "lat": 45.9082146, + "lon": 6.1216083, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "opening_hours": "24/7", + "operator": "eborn", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "survey:date": "2022-09-29", + "website": "http://eborn.fr/" + } + }, + { + "type": "node", + "id": 10061737395, + "lat": 45.4790337, + "lon": 4.7778686, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide de Semons", + "opening_hours": "24/7", + "operator": "SYDER", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "43", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50" + } + }, + { + "type": "node", + "id": 10061968256, + "lat": 45.7880192, + "lon": 4.8395177, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EVBox", + "operator:wikidata": "Q28406392" + } + }, + { + "type": "node", + "id": 10062237993, + "lat": 48.8919707, + "lon": 1.6794565, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY ma borne", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 10062237994, + "lat": 48.9009833, + "lon": 1.6225, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SEY ma borne", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 10062237995, + "lat": 48.9061062, + "lon": 1.2735403, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "SIEGE27", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10063267212, + "lat": 47.60071, + "lon": 7.5329519, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "operator": "EuroAirport" + } + }, + { + "type": "node", + "id": 10063385321, + "lat": 47.6007197, + "lon": 7.5329869, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "operator": "EuroAirport" + } + }, + { + "type": "node", + "id": 10063611773, + "lat": 47.3376741, + "lon": 1.6666795, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Relais de Romorantin", + "operator": "Total Energies", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF080056" + } + }, + { + "type": "node", + "id": 10063749932, + "lat": 45.672156, + "lon": 5.926062, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Relais de Drumettaz", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "payment:website": "yes", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF080072" + } + }, + { + "type": "node", + "id": 10064151314, + "lat": 48.0569894, + "lon": 0.2547468, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Sarthe Sarge Le Mans Nord", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "payment:website": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "43kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "175kW", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF080138" + } + }, + { + "type": "node", + "id": 10064235529, + "lat": 47.6006978, + "lon": 7.532915, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "operator": "EuroAirport" + } + }, + { + "type": "node", + "id": 10064235530, + "lat": 47.6006869, + "lon": 7.5328681, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "operator": "EuroAirport" + } + }, + { + "type": "node", + "id": 10065071069, + "lat": 45.8771704, + "lon": 6.0877305, + "tags": { + "access": "yes", + "addr:city": "Seynod", + "addr:country": "FR", + "addr:postcode": "74600", + "addr:street": "Avenue d'Aix-les-Bains", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "16", + "fee": "yes", + "name": "Annecy Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW" + } + }, + { + "type": "node", + "id": 10065371900, + "lat": 48.9687382, + "lon": 2.4631524, + "tags": { + "access": "yes", + "addr:city": "Gonesse", + "addr:housenumber": "2", + "addr:postcode": "95500", + "addr:street": "Rue de Montservon - Zac des Tulipes", + "amenity": "charging_station", + "capacity": "8", + "charge": "0,44 €/kWh", + "fee": "yes", + "name": "Electra - Gonesse - Hôtel Ibis", + "operator": "Electra", + "socket:type2_combo": "8", + "socket:type2_combo:output": "225 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fZTZjNGZlYTItNWU3Zi0xMWVjLTljYjMtZTcwYjQ2MDVmYTYx" + } + }, + { + "type": "node", + "id": 10065874901, + "lat": 46.7963713, + "lon": 4.8351928, + "tags": { + "access": "yes", + "addr:city": "Chalon-sur-Saône", + "addr:housenumber": "52", + "addr:postcode": "71100", + "addr:street": "Rue François Protheau, Centre Commercial la Thalie", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "28", + "fee": "yes", + "name": "Chalon-sur-Saône Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250 kW" + } + }, + { + "type": "node", + "id": 10066494127, + "lat": 44.1780354, + "lon": 0.6298236, + "tags": { + "access": "customers", + "addr:city": "Boé", + "addr:street": "Avenue de Lacapelette", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "20", + "fee": "yes", + "name": "Agen Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "20", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/agensuperchargerq122" + } + }, + { + "type": "node", + "id": 10067112883, + "lat": 44.7302653, + "lon": 5.8979916, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10067141918, + "lat": 45.154494, + "lon": 5.7224902, + "tags": { + "access": "private", + "amenity": "charging_station", + "fixme": "à préciser", + "motorcar": "yes", + "socket:type1": "10" + } + }, + { + "type": "node", + "id": 10067146417, + "lat": 45.1543947, + "lon": 5.7228188, + "tags": { + "access": "private", + "addr:floor": "0", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "6", + "covered": "yes", + "fee": "no", + "fixme": "à préciser", + "level": "0", + "socket:type1": "6", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 10067297502, + "lat": 45.7477796, + "lon": 4.9311375, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "lit": "yes", + "note": "Installation faîte à 75%" + } + }, + { + "type": "node", + "id": 10067297503, + "lat": 45.7478101, + "lon": 4.9311464, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "lit": "yes", + "note": "Installation faîte à 75%" + } + }, + { + "type": "node", + "id": 10067297504, + "lat": 45.7478406, + "lon": 4.9311554, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "lit": "yes", + "note": "Installation faîte à 75%" + } + }, + { + "type": "node", + "id": 10068495383, + "lat": 43.3312332, + "lon": 1.3172649, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10068658135, + "lat": 43.6039509, + "lon": 1.4503842, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "capacity:charging": "2", + "operator": "alizé", + "survey:date": "2022-11-18" + } + }, + { + "type": "node", + "id": 10069084922, + "lat": 43.8913154, + "lon": -0.4805666, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10069564005, + "lat": 45.7257534, + "lon": 4.9700049, + "tags": { + "amenity": "charging_station", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 10072398688, + "lat": 47.4097329, + "lon": 2.9260264, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33367470767", + "fee": "no", + "network": "IRVE SIEEEN", + "opening_hours": "24/7", + "operator": "SIEEN", + "owner": "SIEEEN", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10072469241, + "lat": 44.3638592, + "lon": 2.5708318, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Révéo", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2022", + "start_date": "11-2022" + } + }, + { + "type": "node", + "id": 10072625330, + "lat": 48.6410715, + "lon": 2.2705894, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS1411", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10072669833, + "lat": 43.4105327, + "lon": 3.255292, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805027158", + "ref:EU:EVSE": "FR*S34*P34025001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10073112759, + "lat": 46.3555151, + "lon": 2.8007734, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10073803860, + "lat": 45.8258246, + "lon": 4.8706983, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10075255138, + "lat": 45.7944837, + "lon": 4.8496, + "tags": { + "amenity": "charging_station", + "operator": "Schneider Electric", + "operator:wikidata": "Q49053" + } + }, + { + "type": "node", + "id": 10075255139, + "lat": 45.794456, + "lon": 4.8495813, + "tags": { + "amenity": "charging_station", + "operator": "Schneider Electric", + "operator:wikidata": "Q49053" + } + }, + { + "type": "node", + "id": 10077603867, + "lat": 43.3201189, + "lon": 5.432294, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10078245120, + "lat": 46.2973042, + "lon": -0.3696477, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "no", + "fee": "yes", + "operator": "TotalEnergies" + } + }, + { + "type": "node", + "id": 10079468154, + "lat": 46.3169227, + "lon": -0.5557504, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-04", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB40085A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020; survey" + } + }, + { + "type": "node", + "id": 10079474812, + "lat": 42.6757515, + "lon": 2.6342476, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10079474813, + "lat": 42.675793, + "lon": 2.6342248, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10079474814, + "lat": 42.6758324, + "lon": 2.6342047, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10079677830, + "lat": 46.7900206, + "lon": -2.0606098, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85234*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677831, + "lat": 46.7940661, + "lon": -2.0625114, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85234*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677832, + "lat": 46.8313081, + "lon": -2.131691, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85164*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677833, + "lat": 46.9695937, + "lon": -2.2350311, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85106*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677834, + "lat": 46.6644585, + "lon": -1.4229092, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*006", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677835, + "lat": 46.6692368, + "lon": -1.42995, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*014", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677836, + "lat": 46.6399493, + "lon": -1.4059925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "CHAUSSON MATERIAUX", + "ref:EU:EVSE": "FR*G52*P85191*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677837, + "lat": 46.6692368, + "lon": -1.4299527, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*014", + "socket:type3c": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677838, + "lat": 46.6644585, + "lon": -1.4229119, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*006", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677839, + "lat": 46.6570988, + "lon": -1.4296603, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobilygreen", + "opening_hours": "24/7", + "operator": "Mobilygreen", + "owner": "CCI LA ROCHE SUR YON", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079677840, + "lat": 46.6505556, + "lon": -1.4383078, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85191*005", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678907, + "lat": 48.8175179, + "lon": 2.2699803, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*73", + "socket:type2": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678908, + "lat": 48.8186429, + "lon": 2.2777802, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*81", + "socket:type2": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678909, + "lat": 48.8175603, + "lon": 2.2830749, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*40", + "socket:type2": "9", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678910, + "lat": 48.8049167, + "lon": 2.2898018, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*38", + "socket:type2": "11", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678911, + "lat": 48.8001061, + "lon": 2.2825089, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*36", + "socket:type2": "9", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678912, + "lat": 48.797168, + "lon": 2.2810793, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*35", + "socket:type2": "11", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678913, + "lat": 48.7770926, + "lon": 2.2424984, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "BSP", + "operator": "BORNES SOLUTIONS", + "owner": "BORNES SOLUTIONS", + "ref:EU:EVSE": "FR*BSP*P92350000000001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678914, + "lat": 48.7724119, + "lon": 2.1645212, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*79", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678915, + "lat": 48.7686925, + "lon": 2.1528643, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*76", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079678916, + "lat": 48.7627946, + "lon": 2.1754029, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*78", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715017, + "lat": 48.7646298, + "lon": 2.1695316, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*75", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715018, + "lat": 48.765482, + "lon": 2.1675038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*77", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715019, + "lat": 48.799691, + "lon": 2.0091355, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "LM - Bois d'Arcy", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "LM - Bois d'Arcy", + "ref:EU:EVSE": "FR*E11*PLM78390*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715020, + "lat": 48.756797, + "lon": 1.9320917, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Fiat Coignières", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Fiat Coignières", + "ref:EU:EVSE": "FR*G47*PPRIODFIAT78310*1", + "socket:type2": "3", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715021, + "lat": 48.7440215, + "lon": 1.9489709, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC08", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715022, + "lat": 48.7447254, + "lon": 1.9569209, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC07", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715023, + "lat": 48.7426631, + "lon": 1.9616497, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC06", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715024, + "lat": 48.7234153, + "lon": 1.9206762, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC09", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715025, + "lat": 48.6871783, + "lon": 1.982882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC13", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715026, + "lat": 48.7186588, + "lon": 1.9933319, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "cchvc.clem.mobi", + "opening_hours": "24/7", + "operator": "Clem'", + "owner": "Communauté de Communes de la Haute Vallée de Chevreuse", + "ref:EU:EVSE": "FR*A07*PCCHVC11", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715027, + "lat": 48.6741942, + "lon": 2.3151668, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715028, + "lat": 48.6741725, + "lon": 2.3150897, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715029, + "lat": 48.6690562, + "lon": 2.331944, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715030, + "lat": 48.6747211, + "lon": 2.3528063, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715031, + "lat": 48.6883894, + "lon": 2.3371965, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715032, + "lat": 48.6880813, + "lon": 2.3504037, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715033, + "lat": 48.6895864, + "lon": 2.3603654, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715034, + "lat": 48.684087, + "lon": 2.3755997, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Fiat Viry-Châtillon", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Fiat Viry-Châtillon", + "ref:EU:EVSE": "FR*G47*PPRIODFIAT91170*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715035, + "lat": 48.6882489, + "lon": 2.3845549, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715036, + "lat": 48.6474278, + "lon": 2.3685408, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715037, + "lat": 48.6054468, + "lon": 2.2990179, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715038, + "lat": 48.6099018, + "lon": 2.3105621, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715039, + "lat": 48.6109242, + "lon": 2.3052011, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715040, + "lat": 48.6175624, + "lon": 2.3075795, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715041, + "lat": 48.6361435, + "lon": 2.3091164, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715042, + "lat": 48.6347663, + "lon": 2.2992754, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715043, + "lat": 48.6403389, + "lon": 2.2305277, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*54", + "socket:chademo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715053, + "lat": 49.7414681, + "lon": 0.5159491, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*11*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715054, + "lat": 49.741566, + "lon": 0.5160141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*29*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715056, + "lat": 49.6762618, + "lon": 0.7900178, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*31*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715057, + "lat": 49.7862517, + "lon": 0.9974384, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*32*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715058, + "lat": 49.8280172, + "lon": 0.9115219, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*75*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715059, + "lat": 49.9041488, + "lon": 0.9249195, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*67*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715060, + "lat": 48.6429358, + "lon": 2.2325233, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*53", + "socket:chademo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715061, + "lat": 48.6403389, + "lon": 2.230525, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*54", + "socket:chademo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715062, + "lat": 48.748719, + "lon": 2.5091314, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Renault Boissy-St-Léger", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Renault Boissy-St-Léger", + "ref:EU:EVSE": "FR*G45*PMAURINRENAULT94470*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715063, + "lat": 48.7421537, + "lon": 2.4863434, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Renault Limeil", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Renault Limeil", + "ref:EU:EVSE": "FR*G45*PMAURINRENAULT94450*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715064, + "lat": 48.7398348, + "lon": 2.4258327, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715065, + "lat": 48.7365074, + "lon": 2.4211121, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SMOYS", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SMOYS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715066, + "lat": 48.7298698, + "lon": 2.3617172, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Paris Aéroports", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "Aéroports de Paris SA", + "ref:EU:EVSE": "FR*SOD*P*GADP*3*_*_*_", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715067, + "lat": 48.8027933, + "lon": 2.4273777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*59", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715068, + "lat": 48.7971962, + "lon": 2.2811222, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*35", + "socket:type2": "11", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715069, + "lat": 48.8489239, + "lon": 2.3045486, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*17", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715070, + "lat": 48.8483008, + "lon": 2.3010001, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*24", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715071, + "lat": 48.8458067, + "lon": 2.3038083, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*03", + "socket:type2": "7", + "socket:typee": "7", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715072, + "lat": 48.8434785, + "lon": 2.2994819, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Paris Recharge", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris", + "ref:EU:EVSE": "FR*W75*PVP*0140", + "socket:type3c": "5", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715073, + "lat": 48.8425941, + "lon": 2.2920522, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*10", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715074, + "lat": 48.8451077, + "lon": 2.2875032, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*15", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715075, + "lat": 48.8416638, + "lon": 2.2869319, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*P9015*04", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:type3c": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715076, + "lat": 48.8425676, + "lon": 2.2848907, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*11", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715077, + "lat": 48.8407, + "lon": 2.2875997, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*22", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715078, + "lat": 48.8388852, + "lon": 2.2892976, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*05", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715079, + "lat": 48.8383114, + "lon": 2.2943401, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX15*16", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715080, + "lat": 48.8258392, + "lon": 2.2904214, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*19", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079715081, + "lat": 48.8210782, + "lon": 2.2884178, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*52", + "socket:chademo": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079718919, + "lat": 49.9068022, + "lon": 1.1043218, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Opel Dieppe", + "operator": "DRIVECO", + "owner": "Opel Dieppe", + "ref:EU:EVSE": "FR*G44*PMVAUTOOPEL76370*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079718920, + "lat": 50.0330397, + "lon": 1.3161506, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*80*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079718921, + "lat": 46.4647778, + "lon": -1.618019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85288*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079725317, + "lat": 49.8786633, + "lon": 1.2217484, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*57*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079726917, + "lat": 49.896459, + "lon": 1.2651014, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*13*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079727817, + "lat": 49.883796, + "lon": 2.2630548, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "O'Tera Amiens", + "operator": "DRIVECO", + "owner": "O'Tera Amiens", + "ref:EU:EVSE": "FR*SSD*POTERA80000*1", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079730017, + "lat": 46.626701, + "lon": -1.8556181, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85035*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079730018, + "lat": 48.4326496, + "lon": 0.0858039, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001E", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740601, + "lat": 48.567918, + "lon": -4.6103954, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29ADCX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740602, + "lat": 48.5132214, + "lon": -4.7646332, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29DMRL", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740603, + "lat": 48.4750124, + "lon": -4.7504872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BTMP", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740604, + "lat": 48.4487244, + "lon": -4.7638822, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29DMMM", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740605, + "lat": 48.432945, + "lon": -4.7330046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29GUAS", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740606, + "lat": 48.4031666, + "lon": -4.7229195, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29JGEA", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740607, + "lat": 48.3415035, + "lon": -4.7197866, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29BSUV", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740608, + "lat": 48.2753674, + "lon": -4.5954609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29DYWH", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079740609, + "lat": 48.2483403, + "lon": -4.4916916, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SDE29", + "ref:EU:EVSE": "FRS29PSDE29JKTR", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743049, + "lat": 47.630795, + "lon": -2.2854352, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PXJVQBA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743050, + "lat": 47.6766361, + "lon": -2.2957242, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PUWNFHN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743051, + "lat": 47.6365246, + "lon": -2.3535955, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PYHQTBN", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743052, + "lat": 47.5803471, + "lon": -2.3581982, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PWDVXQA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743053, + "lat": 47.5923884, + "lon": -2.4570751, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PMEFKNE", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743054, + "lat": 47.5803471, + "lon": -2.3581553, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PWDVXQA", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743055, + "lat": 47.534588, + "lon": -2.4011993, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PFPKPDC", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743056, + "lat": 47.4807846, + "lon": -2.3975515, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PYFURSC", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743057, + "lat": 47.4821767, + "lon": -2.4708939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan Énergies", + "owner": "SDE 56", + "ref:EU:EVSE": "FR*S56*PPWZCTQ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743058, + "lat": 47.3811002, + "lon": -2.54363, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Mobilygreen", + "opening_hours": "24/7", + "operator": "Mobilygreen", + "owner": "CCI PIRIAC", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743059, + "lat": 47.3220215, + "lon": -2.4127865, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Général Automobile - Volvo Guérande", + "opening_hours": "24/7", + "operator": "DRIVECO", + "owner": "Général Automobile - Volvo Guérande", + "ref:EU:EVSE": "FR*SSD*PGENERALAUTOMOBILEVOLVO44350*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743060, + "lat": 47.2890689, + "lon": -2.3905671, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Police Loire Atlantique", + "operator": "ChargePoint", + "owner": "Police Loire Atlantique", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743061, + "lat": 47.2744103, + "lon": -2.2160196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Police Loire Atlantique", + "operator": "ChargePoint", + "owner": "Police Loire Atlantique", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743062, + "lat": 46.9149789, + "lon": -2.0407963, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85018*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743063, + "lat": 46.83122, + "lon": -2.1317339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85164*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079743064, + "lat": 46.7940606, + "lon": -2.06249, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SyDEV", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SYDEV 85", + "ref:EU:EVSE": "FR*S85*P85234*002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079744218, + "lat": 48.433575, + "lon": 0.0985229, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001G", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079744219, + "lat": 48.4298092, + "lon": 0.0898701, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001D", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079744220, + "lat": 49.786224, + "lon": 0.9974706, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*32*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079750617, + "lat": 48.4319734, + "lon": 0.0936359, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001B", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079755717, + "lat": 48.4301563, + "lon": 0.083524, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079805818, + "lat": 49.815004, + "lon": 1.1721897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*62*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079878918, + "lat": 49.8280449, + "lon": 0.9115112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*75*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079878919, + "lat": 49.7692881, + "lon": 1.6439071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*84*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079878920, + "lat": 49.4317567, + "lon": 1.1598301, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76599*001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079878921, + "lat": 49.4386849, + "lon": 1.0952318, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*012", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079878922, + "lat": 49.4814883, + "lon": 1.041255, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76410*002", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893117, + "lat": 49.8305087, + "lon": 1.4032459, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*51*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893118, + "lat": 49.7692881, + "lon": 1.6439071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*59*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893119, + "lat": 49.4473002, + "lon": 1.0657382, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "JLR - JFC - Rouen", + "operator": "DRIVECO", + "owner": "JLR - JFC - Rouen", + "ref:EU:EVSE": "FR*G41*PJLRJFC76000*1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893120, + "lat": 49.448207, + "lon": 1.0635341, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*011", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893121, + "lat": 49.4805681, + "lon": 1.0470057, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76410*001", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893717, + "lat": 49.8304971, + "lon": 1.4032828, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*36*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893718, + "lat": 49.4454866, + "lon": 1.086005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*020", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893917, + "lat": 49.7692915, + "lon": 1.6439152, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*60*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079893918, + "lat": 49.613018, + "lon": 1.547184, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*39*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079896317, + "lat": 49.613011, + "lon": 1.5471853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SDE76", + "operator": "Sodetrel", + "owner": "SDE76", + "ref:EU:EVSE": "FR*SOD*P*SDE7*40*_*_*_", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079896318, + "lat": 49.4400453, + "lon": 1.07526, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*017", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079898017, + "lat": 49.4434819, + "lon": 1.0883345, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*009", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079899117, + "lat": 49.4459993, + "lon": 1.0667789, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "MRN", + "ref:EU:EVSE": "FR*C01*P76540*015", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10079946280, + "lat": 48.6448488, + "lon": 2.273299, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10080140722, + "lat": 48.9650961, + "lon": 2.3202204, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10080325840, + "lat": 43.7929887, + "lon": 4.8295166, + "tags": { + "addr:housenumber": "1 A", + "addr:street": "Avenue Frédéric Mistral", + "amenity": "charging_station", + "authentication:app": "no", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "CCVBA - Simone", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3,7 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10080450897, + "lat": 48.8779195, + "lon": 2.475504, + "tags": { + "access": "yes", + "addr:city": "Rosny-sous-Bois", + "addr:housenumber": "1", + "addr:postcode": "93110", + "addr:street": "Rue de Lisbonne", + "amenity": "charging_station", + "capacity": "6", + "charge": "0,44 €/kWh", + "fee": "yes", + "name": "Electra - Rosny-sous-Bois - B&B Hotels", + "operator": "Electra", + "socket:type2_combo": "6", + "socket:type2_combo:output": "225 kW" + } + }, + { + "type": "node", + "id": 10080516531, + "lat": 48.745298, + "lon": 7.6880798, + "tags": { + "access": "unknown", + "amenity": "charging_station", + "capacity": "2", + "operator": "Burger King" + } + }, + { + "type": "node", + "id": 10080738999, + "lat": 46.3885738, + "lon": -0.4166322, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "mapillary": "377713680997810", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB47069A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "survey;data.gouv.fr:Etalab - 01/2020", + "survey:date": "2022-05-29" + } + }, + { + "type": "node", + "id": 10081559817, + "lat": 44.0890884, + "lon": 6.854004, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Wiiiz", + "survey:date": "2022-10-07" + } + }, + { + "type": "node", + "id": 10081559818, + "lat": 44.0888242, + "lon": 6.8538808, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Wiiiz", + "survey:date": "2022-10-07" + } + }, + { + "type": "node", + "id": 10082369804, + "lat": 49.0333176, + "lon": 2.339929, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10082369931, + "lat": 49.0328546, + "lon": 2.3369631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*107", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10082436731, + "lat": 43.5674632, + "lon": 3.8356407, + "tags": { + "access": "yes", + "addr:city": "Saint-Jean-de-Védas", + "addr:postcode": "34430", + "addr:street": "Rue Robert Schuman", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44 €/kWh", + "fee": "yes", + "name": "Electra - Saint-Jean-de-Védas - Hôtel Campanile", + "operator": "Electra", + "payment:app": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fZTdmZTM3MjgtZjNjOC0xMWVjLWFkZjgtMjc5ODIzZTY2NTU5" + } + }, + { + "type": "node", + "id": 10085698153, + "lat": 48.397786, + "lon": -4.2706358, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 10087081517, + "lat": 48.1763589, + "lon": -1.9173308, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10087381317, + "lat": 45.438864, + "lon": -0.4411409, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "description": "Borne de recharge pour vélos électriques. Carte magnétique à demander l'Office de Tourisme et à la Gare.", + "motor_vehicle": "no", + "operator": "Communauté des Communes de Haute-Saintonge", + "survey:date": "2022-10-09" + } + }, + { + "type": "node", + "id": 10087381417, + "lat": 45.4388902, + "lon": -0.4407735, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VNLU1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10087434616, + "lat": 49.3866349, + "lon": 3.3242521, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10089478673, + "lat": 48.6595237, + "lon": 2.2428435, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS3112", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10089518118, + "lat": 48.6619306, + "lon": 2.2423434, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10091853290, + "lat": 45.118992, + "lon": 5.6706197, + "tags": { + "amenity": "charging_station", + "fixme": "Borne pas encore en service au 06/10/22." + } + }, + { + "type": "node", + "id": 10092639363, + "lat": 48.9744498, + "lon": 2.3087895, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "sigeif", + "ref": "MAT-030563" + } + }, + { + "type": "node", + "id": 10092767841, + "lat": 45.1960465, + "lon": 5.7128818, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 10095151535, + "lat": 48.6429519, + "lon": 2.2325294, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Sigeif", + "operator": "SIGEIF", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE5311", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10095505676, + "lat": 49.0800408, + "lon": 2.353216, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "owner": "SIGEIF", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10095536109, + "lat": 48.1905159, + "lon": -2.2025576, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10097078574, + "lat": 43.2478952, + "lon": 5.3996673, + "tags": { + "amenity": "charging_station", + "description": "larecharge 2x22kW VPLR2" + } + }, + { + "type": "node", + "id": 10097616482, + "lat": 49.2105412, + "lon": 1.1820681, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10098410279, + "lat": 48.7886794, + "lon": 2.3304123, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schneider", + "model": "Evlink Smart WallBox", + "note": "Deux boitiers dos à dos.", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10098410280, + "lat": 48.7887276, + "lon": 2.3304358, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "Schneider", + "model": "Evlink Smart WallBox", + "parking:fee": "no", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10100618332, + "lat": 48.4295763, + "lon": 2.1610848, + "tags": { + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "'gratuit une heure avec la carte de fidélité'", + "operator": "Carrefour", + "operator:type": "private", + "payment:contactless": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW" + } + }, + { + "type": "node", + "id": 10100618334, + "lat": 48.4295955, + "lon": 2.1610732, + "tags": { + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "'gratuit une heure avec la carte de fidélité'", + "operator": "Carrefour", + "operator:type": "private", + "payment:contactless": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "22 kW" + } + }, + { + "type": "node", + "id": 10100618337, + "lat": 48.4296381, + "lon": 2.1610473, + "tags": { + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Carrefour", + "operator:type": "private", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 10100618338, + "lat": 48.4296147, + "lon": 2.1610616, + "tags": { + "amenity": "charging_station", + "authentication:debit_card": "yes", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Carrefour", + "operator:type": "private", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 10100755771, + "lat": 48.6320841, + "lon": 2.2676796, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10101773380, + "lat": 48.6400891, + "lon": 2.2899405, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102059077, + "lat": 48.8260665, + "lon": 2.2408555, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102059078, + "lat": 48.8260398, + "lon": 2.2409142, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102059079, + "lat": 48.8260082, + "lon": 2.2409933, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102059080, + "lat": 48.8259846, + "lon": 2.241049, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102059081, + "lat": 48.8259502, + "lon": 2.2411378, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102059082, + "lat": 48.8259224, + "lon": 2.2412015, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102060549, + "lat": 49.3877615, + "lon": 3.147243, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102185988, + "lat": 48.9352705, + "lon": 2.2416241, + "tags": { + "access": "yes", + "addr:city": "Argenteuil", + "addr:housenumber": "1", + "addr:postcode": "95100", + "addr:street": "Rue Ary Scheffer", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44€/kWh", + "fee": "yes", + "name": "Electra - Argenteuil - Hôtel Campanile", + "operator": "Electra", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 10102663103, + "lat": 48.4508536, + "lon": -2.0443364, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10102744013, + "lat": 48.9156668, + "lon": -1.1905965, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10102775428, + "lat": 45.8527146, + "lon": 5.0596724, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "wikimedia_commons": "File:Super U (Montluel) parking - recharge électrique (octobre 2022).JPG" + } + }, + { + "type": "node", + "id": 10102775429, + "lat": 45.8527004, + "lon": 5.0596706, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "wikimedia_commons": "File:Super U (Montluel) parking - recharge électrique (octobre 2022).JPG" + } + }, + { + "type": "node", + "id": 10103646311, + "lat": 48.0823539, + "lon": -1.6785423, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10103790785, + "lat": 48.8991712, + "lon": 2.3653608, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "TOTAL MARKETING FRANCE", + "owner": "TOTAL MARKETING FRANCE", + "ref:EU:EVSE": "FR*V75*PPX18*03", + "socket:type2": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10103802642, + "lat": 50.2238792, + "lon": 1.6140367, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10105983421, + "lat": 45.7630407, + "lon": 4.8544349, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Part-Dieu - Deruelle", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY301D", + "ref:EU:EVSE": "FR*GLY*PLYON16241", + "socket:type2": "1", + "socket:type2:power": "7 kW", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10105983422, + "lat": 45.7630307, + "lon": 4.8543275, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Part-Dieu - Deruelle", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY301C", + "ref:EU:EVSE": "FR*GLY*PLYON16231", + "socket:type2": "1", + "socket:type2:power": "7 kW", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10105983423, + "lat": 45.7630207, + "lon": 4.8542201, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Part-Dieu - Deruelle", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY301B", + "ref:EU:EVSE": "FR*GLY*PLYON16221", + "socket:type2": "1", + "socket:type2:power": "7 kW", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10106412425, + "lat": 43.9660129, + "lon": 3.439173, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG 30", + "ref:EU:EVSE": "FR*S30*P30009*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10106600217, + "lat": 48.372383, + "lon": -4.5869571, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "Carrefour Plouzané" + } + }, + { + "type": "node", + "id": 10107278229, + "lat": 43.2136002, + "lon": 5.6312112, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "izivia (edf)" + } + }, + { + "type": "node", + "id": 10108390360, + "lat": 50.4724201, + "lon": 2.5051994, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "motor_vehicle": "no", + "operator": "Divion" + } + }, + { + "type": "node", + "id": 10108396552, + "lat": 50.4677794, + "lon": 2.4952801, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "fee": "no", + "fixme": "à replacer au bon endroit", + "motor_vehicle": "no", + "operator": "Divion" + } + }, + { + "type": "node", + "id": 10109960648, + "lat": 45.1462824, + "lon": 6.4199886, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Hager", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10110016318, + "lat": 43.9439677, + "lon": 1.3677254, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10110053707, + "lat": 49.174141, + "lon": 1.3527453, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10110625117, + "lat": 45.7855064, + "lon": 3.0849936, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2022-10-18" + } + }, + { + "type": "node", + "id": 10110946691, + "lat": 49.1189989, + "lon": 6.8760513, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "Mo-Tu; We off; Th-Su", + "operator": "Freshmile", + "voltage": "400" + } + }, + { + "type": "node", + "id": 10112005204, + "lat": 48.4186872, + "lon": -4.4438668, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10112005213, + "lat": 48.4188312, + "lon": -4.444429, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10112046165, + "lat": 47.3642389, + "lon": -0.5249091, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10115090017, + "lat": 44.8729858, + "lon": -0.5056952, + "tags": { + "amenity": "charging_station", + "name": "TotalEnergies Charging Station", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10115978438, + "lat": 48.9581906, + "lon": 2.326412, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10115978439, + "lat": 48.9582095, + "lon": 2.3263429, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10115978440, + "lat": 48.9582337, + "lon": 2.3262564, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10115978441, + "lat": 48.9582562, + "lon": 2.3261746, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10115978442, + "lat": 48.9582799, + "lon": 2.3260935, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10117150564, + "lat": 44.1450299, + "lon": 3.0178273, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10119180699, + "lat": 43.6374856, + "lon": 1.3751202, + "tags": { + "access": "yes", + "addr:city": "Blagnac", + "addr:housenumber": "2", + "addr:postcode": "31700", + "addr:street": "rue René Rey", + "amenity": "charging_station", + "capacity": "4", + "charge": "0,44€/kWh", + "fee": "yes", + "name": "Electra - Blagnac - Hôtel Première Classe Toulouse Aéroport", + "operator": "Electra", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 10123102017, + "lat": 49.0260269, + "lon": 1.1531704, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SIEGE 27", + "operator": "SGA Mobility", + "survey:date": "2022-10-23" + } + }, + { + "type": "node", + "id": 10123385768, + "lat": 45.7349907, + "lon": 4.870728, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY801B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10123385769, + "lat": 45.7350792, + "lon": 4.8706495, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY801A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10126207337, + "lat": 48.7441928, + "lon": 1.9205068, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10126207338, + "lat": 48.7441606, + "lon": 1.920457, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10126408794, + "lat": 43.4565448, + "lon": 5.8521455, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "network": "ChargePoint", + "scooter": "no", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10126408795, + "lat": 43.456533, + "lon": 5.8520937, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "network": "ChargePoint", + "opening_hours": "24/7", + "scooter": "no", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10126408796, + "lat": 43.4565212, + "lon": 5.8520418, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "network": "ChargePoint", + "opening_hours": "24/7", + "scooter": "no", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10126408797, + "lat": 43.4565093, + "lon": 5.85199, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "network": "ChargePoint", + "opening_hours": "24/7", + "scooter": "no", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10126408798, + "lat": 43.4564975, + "lon": 5.8519381, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "network": "ChargePoint", + "scooter": "no", + "socket:chademo": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10126408799, + "lat": 43.4564857, + "lon": 5.8518863, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "network": "ChargePoint", + "opening_hours": "24/7", + "scooter": "no", + "socket:chademo": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10126703607, + "lat": 48.9618023, + "lon": 1.8077091, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10128386215, + "lat": 48.9605443, + "lon": 2.3437987, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10128386216, + "lat": 48.9605421, + "lon": 2.3436988, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10128386217, + "lat": 48.9605474, + "lon": 2.3438866, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10129906657, + "lat": 46.3053576, + "lon": -0.4876145, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "fixme": "à corriger/améliorer le détail", + "manufacturer": "ABB", + "model": "Terra 124 CC", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2_combo": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 10129906658, + "lat": 46.3053106, + "lon": -0.487688, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "fixme": "à corriger/améliorer le détail", + "manufacturer": "Schneider Electric", + "model": "EVC1S22P4E4ERF", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 10129906659, + "lat": 46.3053341, + "lon": -0.4876512, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "fixme": "à corriger/améliorer le détail", + "manufacturer": "Schneider Electric", + "model": "EVC1S22P4E4ERF", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 10130702755, + "lat": 48.6446885, + "lon": 1.8307015, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10131405085, + "lat": 46.3358588, + "lon": -0.4202258, + "tags": { + "FIXME": "à check si c'est toujours gratuit", + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "description": "horaire en fonction de l'ouverture de Séolis car se trouve à l'intérieur", + "fee": "no", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "Mo-Fr 09:00-12:15,13:30-17:45", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB49067A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020; survey" + } + }, + { + "type": "node", + "id": 10131405578, + "lat": 46.0456922, + "lon": 4.0522912, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10131405669, + "lat": 46.0829596, + "lon": 4.0812183, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10131418674, + "lat": 46.3288704, + "lon": -0.4604099, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-10-26", + "fee": "yes", + "motorcar": "yes", + "network": "AlterBase", + "opening_hours": "24/7", + "operator": "Séolis", + "owner": "Séolis", + "ref:EU:EVSE": "FRSEOPAB 79191P0031A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020; survey" + } + }, + { + "type": "node", + "id": 10133277503, + "lat": 47.482423, + "lon": -0.5737269, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277504, + "lat": 47.4824555, + "lon": -0.5737739, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277505, + "lat": 47.4824885, + "lon": -0.5738203, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277506, + "lat": 47.4825237, + "lon": -0.5738631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277507, + "lat": 47.4825579, + "lon": -0.5739075, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277508, + "lat": 47.4825913, + "lon": -0.5739532, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277509, + "lat": 47.4826247, + "lon": -0.573999, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277510, + "lat": 47.4826588, + "lon": -0.5740436, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277511, + "lat": 47.4826925, + "lon": -0.5740887, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10133277512, + "lat": 47.4827262, + "lon": -0.5741339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10134800340, + "lat": 44.0698601, + "lon": 1.0960726, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10135582032, + "lat": 45.7740709, + "lon": 4.8672935, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Izivia", + "operator:wikidata": "Q86671322" + } + }, + { + "type": "node", + "id": 10135901117, + "lat": 43.5233707, + "lon": -1.4900676, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "mobive" + } + }, + { + "type": "node", + "id": 10136155564, + "lat": 45.4593529, + "lon": 6.9663062, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10136378433, + "lat": 47.8591393, + "lon": -1.6895359, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Leclerc" + } + }, + { + "type": "node", + "id": 10136378434, + "lat": 47.8570603, + "lon": -1.6907522, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10137612265, + "lat": 43.2160148, + "lon": 3.0899639, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Narbone-Vinassan Nord", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu" + } + }, + { + "type": "node", + "id": 10138365071, + "lat": 49.2450044, + "lon": 4.0405276, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10139135708, + "lat": 48.1797316, + "lon": -1.7205184, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "HUCHET SAS - BMW RENNES", + "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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PPAUTRICBMW357601", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10139135709, + "lat": 48.1798268, + "lon": -1.7209589, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "HUCHET SAS - BMW RENNES", + "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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PPAUTRICBMW357601", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10139135710, + "lat": 48.1798747, + "lon": -1.7205566, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "HUCHET SAS - BMW RENNES", + "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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PPAUTRICBMW357601", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10139135711, + "lat": 48.1797889, + "lon": -1.7212825, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "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", + "operator": "Huchet SAS - BMW Rennes", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PPAUTRICBMW357601", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10139285505, + "lat": 43.4920894, + "lon": 1.1455286, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEHG" + } + }, + { + "type": "node", + "id": 10139341822, + "lat": 48.8480051, + "lon": 2.3399264, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10139512678, + "lat": 43.5290533, + "lon": 3.9339655, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10140020137, + "lat": 48.5954433, + "lon": 7.7089991, + "tags": { + "access": "customers", + "addr:city": "Strasbourg", + "addr:country": "FR", + "addr:postcode": "67200", + "addr:street": "Route d'Oberhausbergen", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q111209120", + "socket:chademo:output": "50 kW", + "socket:type2:output": "43 kW", + "socket:type2_combo:output": "50 kW", + "website": "https://charge.freshmile.com/location/WOJVP7XK3S" + } + }, + { + "type": "node", + "id": 10140480518, + "lat": 48.8590259, + "lon": 2.319367, + "tags": { + "amenity": "charging_station", + "ref": "2", + "survey:date": "2022-10-30" + } + }, + { + "type": "node", + "id": 10140480720, + "lat": 48.8591758, + "lon": 2.3194776, + "tags": { + "amenity": "charging_station", + "ref": "6", + "survey:date": "2022-10-30" + } + }, + { + "type": "node", + "id": 10140480721, + "lat": 48.8591379, + "lon": 2.3194502, + "tags": { + "amenity": "charging_station", + "ref": "5", + "survey:date": "2022-10-30" + } + }, + { + "type": "node", + "id": 10140480722, + "lat": 48.8591, + "lon": 2.3194242, + "tags": { + "amenity": "charging_station", + "ref": "4", + "survey:date": "2022-10-30" + } + }, + { + "type": "node", + "id": 10140480723, + "lat": 48.8590647, + "lon": 2.3193948, + "tags": { + "amenity": "charging_station", + "ref": "3", + "survey:date": "2022-10-30" + } + }, + { + "type": "node", + "id": 10140480724, + "lat": 48.858986, + "lon": 2.3193369, + "tags": { + "amenity": "charging_station", + "ref": "1", + "survey:date": "2022-10-30" + } + }, + { + "type": "node", + "id": 10141434446, + "lat": 43.6283274, + "lon": 1.4824986, + "tags": { + "amenity": "charging_station", + "capacity": "18", + "email": "info.allego.france@allego.eu", + "fee": "yes", + "motorcar": "yes", + "network": "ALLEGO", + "opening_hours": "24/7", + "operator": "Green To Wheel", + "owner": "Allego", + "payment:credit_cards": "yes", + "phone": "+33140700617", + "ref:EU:EVSE": "FR*ALL*PTIS016", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10141434447, + "lat": 43.6282422, + "lon": 1.4824703, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7", + "ref": "FRALLEGO002072", + "socket": "3", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10143123383, + "lat": 45.7328553, + "lon": 3.0646052, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "SIEG 63 Place de la Résistance", + "operator": "ORIOS by SPIE (SIEG 63)", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10143125589, + "lat": 45.7399647, + "lon": 3.0602435, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "name": "SIEG 63 Parking ECC", + "operator": "ORIOS by SPIE (SIEG 63)", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10143229771, + "lat": 47.0611614, + "lon": -1.3089394, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "model": "Diva SP", + "motorcar": "yes", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44165A", + "socket:type2": "2", + "socket:type2:output": "22000", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10144626274, + "lat": 49.237709, + "lon": 1.4010441, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE262", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PANDELYSPTANDELYS", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "source:position": "survey", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10146928836, + "lat": 45.2671519, + "lon": 1.1369294, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10147247319, + "lat": 48.871928, + "lon": 2.3726119, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Belib'", + "survey:date": "2022-11-01" + } + }, + { + "type": "node", + "id": 10147314698, + "lat": 43.7262951, + "lon": 7.2553963, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10147314699, + "lat": 43.7263581, + "lon": 7.2553817, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10147314700, + "lat": 43.7264185, + "lon": 7.2553728, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10147689558, + "lat": 47.0072776, + "lon": -0.7447178, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEML", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "SIEML", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S49*P49192A", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10148204520, + "lat": 46.1404033, + "lon": 3.4404776, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "start_date": "2022", + "survey:date": "2022-11-01" + } + }, + { + "type": "node", + "id": 10148204521, + "lat": 46.1337147, + "lon": 3.4560783, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "survey:date": "2022-11-01" + } + }, + { + "type": "node", + "id": 10151550709, + "lat": 48.8260065, + "lon": 1.7021764, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10152368018, + "lat": 43.093149, + "lon": 6.0256043, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10154734008, + "lat": 48.5974996, + "lon": 7.7340915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 10154734009, + "lat": 48.597168, + "lon": 7.7352039, + "tags": { + "access": "permit", + "amenity": "charging_station", + "capacity": "2", + "operator": "E. Leclerc" + } + }, + { + "type": "node", + "id": 10154752694, + "lat": 48.599648, + "lon": 7.7309542, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "IKEA", + "operator:wikidata": "Q54078" + } + }, + { + "type": "node", + "id": 10154833308, + "lat": 49.5352678, + "lon": 2.9705058, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10154877205, + "lat": 45.2718877, + "lon": 4.8779759, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10154913165, + "lat": 48.8214034, + "lon": 2.2136724, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Sodetrel", + "owner": "SIGEIF", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*SIG*PSIGE18011;FR*SIG*PSIGE18012", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10155071903, + "lat": 45.8630619, + "lon": 5.9476813, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10156521487, + "lat": 42.6605559, + "lon": 2.9525368, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR22", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PUNQRXVIEMT", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10156782205, + "lat": 48.9058623, + "lon": 2.3210917, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "operator": "Metropolis" + } + }, + { + "type": "node", + "id": 10157728224, + "lat": 48.6894062, + "lon": 5.9012132, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10159592638, + "lat": 49.056357, + "lon": 1.1670318, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "charge": "0,25 EUR", + "covered": "no", + "fee": "yes", + "name": "LIDL Normanville", + "opening_hours": "Mo-Sa 08:30-20:00; Su 08:30-12:30", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:app": "yes", + "payment:cards": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10159750804, + "lat": 48.6793865, + "lon": 5.8892318, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10159823970, + "lat": 45.1632546, + "lon": 6.4345384, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "7 kW", + "fee": "no", + "manufacturer": "Hager", + "motorcar": "yes", + "name": "Le Col Roulé - Charging Station", + "operator": "Le Col Roulé", + "socket:type2": "1", + "socket:type2:current": "32", + "socket:type2:output": "7.4kW", + "socket:type2:voltage": "230", + "socket:typee": "1", + "website": "https://www.lecolroule.fr/valloire/" + } + }, + { + "type": "node", + "id": 10159941196, + "lat": 48.3176186, + "lon": -0.0249146, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "Sarthe IRVE" + } + }, + { + "type": "node", + "id": 10160000266, + "lat": 16.2410003, + "lon": -61.5412569, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10160026383, + "lat": 44.9030035, + "lon": 4.1555518, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "resituer la position exacte" + } + }, + { + "type": "node", + "id": 10160245957, + "lat": 49.1140157, + "lon": 6.1846901, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "indigo" + } + }, + { + "type": "node", + "id": 10162654460, + "lat": 44.1299351, + "lon": 3.3844674, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SMEG - 30", + "payment:credit_cards": "no", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S30*P30139001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10163786308, + "lat": 45.8257958, + "lon": 4.870743, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 10163911334, + "lat": 48.7763148, + "lon": 2.3403895, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10163979839, + "lat": 49.4705635, + "lon": 3.5520682, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10164011574, + "lat": 43.4394524, + "lon": 3.6779442, + "tags": { + "access": "yes", + "amenity": "charging_station", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34023001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://map.alizecharge.com/reveo" + } + }, + { + "type": "node", + "id": 10166328760, + "lat": 47.6013806, + "lon": -2.8630688, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "opendata56@morbihan-energies.fr", + "fee": "yes", + "moped": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Morbihan Energies", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "phone": "+33269246732", + "ref:EU:EVSE": "FR*S56*PWFJUNQY8TV", + "socket:type2": "2", + "socket:typee": "2", + "source": "Visual" + } + }, + { + "type": "node", + "id": 10166521502, + "lat": 43.7498624, + "lon": 7.1446415, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10166750360, + "lat": 47.4779948, + "lon": -3.1268208, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan Énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "socket:type2": "2", + "socket:typee": "2", + "source": "Visual" + } + }, + { + "type": "node", + "id": 10169379578, + "lat": 48.6989901, + "lon": 5.9096905, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10169379579, + "lat": 48.6990215, + "lon": 5.9097163, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10170132964, + "lat": 50.2909544, + "lon": 2.7616876, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10170132965, + "lat": 50.2912757, + "lon": 2.7615233, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Département du Pas-de-Calais" + } + }, + { + "type": "node", + "id": 10170171452, + "lat": 48.9167688, + "lon": 2.6035177, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10170848287, + "lat": 50.3454043, + "lon": 2.5802647, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté de Communes des Campagnes de l'Artois", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H18*P62045001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10171129917, + "lat": 48.3299495, + "lon": -1.8418295, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "yes", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 10171326393, + "lat": 47.6589133, + "lon": -2.7641046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "socket:type2": "2", + "socket:typee": "2", + "source": "Visual" + } + }, + { + "type": "node", + "id": 10171350111, + "lat": 47.6563286, + "lon": -2.7593974, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Morbihan énergies", + "opening_hours": "24/7", + "operator": "Morbihan énergies", + "operator:wikidata": "Q65966055", + "owner": "SDE 56", + "socket:type2": "2", + "socket:typee": "2", + "source": "Visual" + } + }, + { + "type": "node", + "id": 10171728918, + "lat": 47.0886356, + "lon": 5.4894663, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 10172275972, + "lat": 48.0727769, + "lon": 7.2942773, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10172297329, + "lat": 48.8841413, + "lon": 2.2458214, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10172371667, + "lat": 43.3478376, + "lon": 3.224141, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805028605", + "ref:EU:EVSE": "FR*S34*P34032001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10173800027, + "lat": 48.5948562, + "lon": 1.6766522, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "no", + "motorcar": "yes", + "name": "Super U", + "network": "Super U", + "opening_hours": "24/7", + "operator": "Super U", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10173800028, + "lat": 48.5917464, + "lon": 1.6758194, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "6", + "charge": "0,30 €/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "opening_hours": "24/7", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10174243696, + "lat": 45.6351164, + "lon": 4.8222863, + "tags": { + "access": "yes", + "addr:city": "Sérézin-du-Rhône", + "addr:housenumber": "12", + "addr:postcode": "69360", + "addr:street": "Route Departementale 12", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "8", + "charge": "0,44€/kWh", + "email": "help@electra.com", + "fee": "yes", + "name": "Electra - Sérézin-du-Rhône - Peugeot", + "opening_hours": "24/7", + "operator": "Electra", + "owner": "ELECTRA", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*ELC*PSDRPG", + "reservation": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "225 kW", + "source": "https://www.data.gouv.fr/fr/datasets/fichier-consolide-des-bornes-de-recharge-pour-vehicules-electriques/", + "source:date": "2023-01-27" + } + }, + { + "type": "node", + "id": 10174603646, + "lat": 50.292341, + "lon": 2.765761, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041015", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10174636271, + "lat": 50.2864496, + "lon": 2.7824812, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041004", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10175715773, + "lat": 45.7468453, + "lon": 4.9045323, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "izivia", + "ref": "BRN05B" + } + }, + { + "type": "node", + "id": 10175715774, + "lat": 45.7467262, + "lon": 4.9045269, + "tags": { + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "izivia", + "ref": "BRN05A" + } + }, + { + "type": "node", + "id": 10177770615, + "lat": 49.4181819, + "lon": 2.8244519, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "email": "a.buffler@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "INDIGO FRANCE", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Indigo", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*P07*P60159001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10178279338, + "lat": 44.120204, + "lon": 4.8428723, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Norauto" + } + }, + { + "type": "node", + "id": 10178279339, + "lat": 44.1201788, + "lon": 4.8429365, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "name": "Norauto" + } + }, + { + "type": "node", + "id": 10178626067, + "lat": 45.7251719, + "lon": 5.9197726, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10178823942, + "lat": 43.6016961, + "lon": 1.4111584, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "operator": "alize", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10178952040, + "lat": 48.8881082, + "lon": 2.3733271, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10180457217, + "lat": 48.8654136, + "lon": 2.2996381, + "tags": { + "amenity": "charging_station", + "capacity": "5" + } + }, + { + "type": "node", + "id": 10180700220, + "lat": 48.8237523, + "lon": 2.3194576, + "tags": { + "amenity": "charging_station", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 10180787777, + "lat": 48.8257655, + "lon": 2.3263098, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "operator": "Ubeeqo" + } + }, + { + "type": "node", + "id": 10180823030, + "lat": 48.8208774, + "lon": 2.3368368, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "operator": "Be lib" + } + }, + { + "type": "node", + "id": 10180971625, + "lat": 50.2955664, + "lon": 2.7542907, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "CHA" + } + }, + { + "type": "node", + "id": 10180987167, + "lat": 50.2988647, + "lon": 2.7410513, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "operator:wikidata": "Q151954", + "owner": "Lidl DR25", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PST9CPGZFUY", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10180987170, + "lat": 50.2994293, + "lon": 2.7413692, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR25", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PST9CPGZFUY", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10181329471, + "lat": 48.8407761, + "lon": 2.409644, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10184627030, + "lat": 44.1551786, + "lon": 1.3175225, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Puycornet, Salle Communale", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "SDE 82", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:debit_cards": "yes", + "ref:EU:EVSE": "FRS82PNTXBJ7UOFO", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Etalab / IRVE - 2023-04-28;survey", + "start_date": "2021-03-11", + "survey:date": "2022-10-28", + "voltage": "230", + "website": "https://charge.freshmile.com/location/NTXBJ7UOFO" + } + }, + { + "type": "node", + "id": 10185229978, + "lat": 45.7375422, + "lon": 4.8848799, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY804B", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10185229985, + "lat": 45.7374992, + "lon": 4.8847598, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY804A", + "socket:type2": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10185344700, + "lat": 48.6110995, + "lon": 7.781603, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10185406681, + "lat": 48.5988751, + "lon": 7.790825, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10186137409, + "lat": 48.1790421, + "lon": -1.7211384, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "name": "Borne NISSAN ESPACE 3 - ST GREGOIRE", + "operator": "Stations-e" + } + }, + { + "type": "node", + "id": 10188032961, + "lat": 45.7727375, + "lon": 4.926285, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10188963677, + "lat": 49.0328498, + "lon": 2.6992923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10188963678, + "lat": 49.0328131, + "lon": 2.6992638, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10188963679, + "lat": 49.0327788, + "lon": 2.699237, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10195222716, + "lat": 46.10841, + "lon": 4.752402, + "tags": { + "access": "yes", + "amenity": "charging_station", + "covered": "no", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10196760187, + "lat": 48.8139016, + "lon": 1.8749996, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10197647066, + "lat": 45.7544881, + "lon": 4.8502718, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon | Rue d'Arménie", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY307A;MAT-008849", + "ref:EU:EVSE": "FR*GLY*PLYON3012", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10197739906, + "lat": 47.5034129, + "lon": 6.7923774, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Power dot", + "parking:fee": "no", + "parking_space": "charging", + "payment:credit_cards": "yes", + "socket:chademo:output": "50kW", + "socket:type2:output": "22kW", + "socket:type2_combo:output": "80kW", + "website": "https://powerdot.fr/" + } + }, + { + "type": "node", + "id": 10198858689, + "lat": 50.4855525, + "lon": 2.831591, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "email": "contact@sga-automation.com", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau de recharge Brasserie Castelain", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "SGA Industries", + "owner": "Brasserie Castelain", + "payment:credit_cards": "no", + "phone": "+33232103853", + "ref:EU:EVSE": "FR*SGA*P1M2018", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10199098992, + "lat": 48.6935255, + "lon": 1.8557353, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Sodetrel", + "payment:credit_cards": "no", + "ref:EU:EVSE": "FR*A05*PRMBT3011", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10199104725, + "lat": 48.6947723, + "lon": 1.8544223, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Sodetrel", + "payment:credit_cards": "no", + "ref:EU:EVSE": "FR*A05*PRMBT2711", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10199231533, + "lat": 48.6915385, + "lon": 1.8577643, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Sodetrel", + "payment:credit_cards": "no", + "ref:EU:EVSE": "FR*A05*PRMBT3412", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10199741050, + "lat": 48.814785, + "lon": 1.8777782, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10199741053, + "lat": 48.8148241, + "lon": 1.877814, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10200150039, + "lat": 43.5419377, + "lon": 6.9615799, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "wiiiz" + } + }, + { + "type": "node", + "id": 10200622240, + "lat": 48.8322216, + "lon": 2.3718002, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "scooter": "yes" + } + }, + { + "type": "node", + "id": 10202514727, + "lat": 50.2742989, + "lon": 2.7694114, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62004001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10202713799, + "lat": 43.5024747, + "lon": 4.9888752, + "tags": { + "amenity": "charging_station", + "authentication:money_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Métropole Aix-Marseille Provence", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 10203572973, + "lat": 45.7260647, + "lon": 4.8538247, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "note": "Position à confirmer", + "ref": "LY809B", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 10203572974, + "lat": 45.7260169, + "lon": 4.8538294, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "note": "Position à confirmer", + "ref": "LY809A", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW" + } + }, + { + "type": "node", + "id": 10203704189, + "lat": 50.3573658, + "lon": 3.5287054, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Valenciennes Métropole", + "ref:EU:EVSE": "FR*H03*P59606*004", + "socket:type2": "4", + "socket:typee": "4" + } + }, + { + "type": "node", + "id": 10203883093, + "lat": 45.7825775, + "lon": 4.7857586, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10204031676, + "lat": 49.0026167, + "lon": 2.4707744, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10204051522, + "lat": 43.1604366, + "lon": 6.4647735, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 10205145356, + "lat": 4.9391613, + "lon": -52.3007798, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "EZDrive" + } + }, + { + "type": "node", + "id": 10209620867, + "lat": 48.8930284, + "lon": -0.8832576, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10209976721, + "lat": 48.7302833, + "lon": 1.3699094, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10210731035, + "lat": 48.0309496, + "lon": 0.1815755, + "tags": { + "access": "yes", + "addr:city": "Le Mans", + "addr:postcode": "72000", + "addr:street": "Rue du Parc Monceau", + "amenity": "charging_station", + "capacity": "8", + "charge": "0,44€/kWh", + "fee": "yes", + "name": "Electra - Le Mans - Parc Manceau", + "operator": "Electra", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "225 kW" + } + }, + { + "type": "node", + "id": 10211755940, + "lat": 49.1569566, + "lon": 5.8824569, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Bornes de recharge" + } + }, + { + "type": "node", + "id": 10211984822, + "lat": 44.2056786, + "lon": 0.6272976, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10212212477, + "lat": 45.781423, + "lon": 4.8342168, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "5", + "operator": "EDF" + } + }, + { + "type": "node", + "id": 10212493634, + "lat": 49.1501769, + "lon": 6.2780567, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "0,220 € par kWh + 0,028 € par minute de connexion à la borne", + "description": "DOMESTIQUE UE : 3kW / Alternatif monophasé\nTYPE 2 : 22kW / Alternatif triphasé", + "fee": "yes", + "operator": "Freshmile", + "ref": "FRFR1EZEYA1", + "website": "xfm.fr/ZEYA1;xfm.fr/ZEYA2" + } + }, + { + "type": "node", + "id": 10215399367, + "lat": 47.5282598, + "lon": 6.8094719, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "8", + "construction": "yes", + "fee": "yes", + "fixme": "Date d'ouverture inconnue mais bornes toutes posées\nVérifier le 01/02/2023, toujours pas en route.", + "operator": "Power dot", + "payment:credit_cards": "yes", + "website": "https://powerdot.fr/" + } + }, + { + "type": "node", + "id": 10216406976, + "lat": 50.2919807, + "lon": 2.7745841, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041005", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10216504945, + "lat": 46.5656201, + "lon": 3.3295354, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10216516125, + "lat": 46.5668324, + "lon": 3.3274015, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10216786917, + "lat": 49.1649288, + "lon": 5.8454929, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Bornes de recharge", + "survey:date": "2022-11-25" + } + }, + { + "type": "node", + "id": 10219209431, + "lat": 47.9998736, + "lon": 6.6425456, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "charging_station:output": "18 kW", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Dommartin - Rue de Pont", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "163280;163281;163282", + "socket:chademo": "1", + "socket:chademo:output": "20 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10219742499, + "lat": 48.2086147, + "lon": 6.722753, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Evbox", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Bruyères - PLace Stanislas", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "RSVR1;RSVR2", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "22 kW" + } + }, + { + "type": "node", + "id": 10220106331, + "lat": 48.4065582, + "lon": 6.8414871, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Evbox", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Raon-l'Étape - Rue de la Tour", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "RSWF1;RSWF2", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "44 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10220938363, + "lat": 50.3523369, + "lon": 2.4863813, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté de Communes des Campagnes de l'Artois", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H18*P62820001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10221074357, + "lat": 48.9929311, + "lon": 1.6335554, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Rosny Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10221208936, + "lat": 16.2416864, + "lon": -61.5635963, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10221550859, + "lat": 45.9103854, + "lon": 6.4669336, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10221674019, + "lat": 45.7302859, + "lon": 4.8877265, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "BRN07A", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10221674020, + "lat": 45.7302494, + "lon": 4.8876916, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "BRN07B", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10221674021, + "lat": 45.7302335, + "lon": 4.8878606, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "BRN06A", + "socket:chademo": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10221674022, + "lat": 45.7301998, + "lon": 4.8878311, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "BRN06B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10221824921, + "lat": 48.7743552, + "lon": 2.126179, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10222064308, + "lat": 45.7126962, + "lon": 4.9048438, + "tags": { + "amenity": "charging_station", + "operator": "Hager", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10222065723, + "lat": 16.2412714, + "lon": -61.5410042, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10222065724, + "lat": 16.2412448, + "lon": -61.5410098, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10222065725, + "lat": 16.2412233, + "lon": -61.5410116, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10222363656, + "lat": 48.0196301, + "lon": 6.6114011, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Cahors", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Étienne-lès-Remiremont - Mairie", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "BTGA1;BTGA2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "start_date": "2020-11" + } + }, + { + "type": "node", + "id": 10223484378, + "lat": 43.2828205, + "lon": 5.4259668, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "5" + } + }, + { + "type": "node", + "id": 10223538518, + "lat": 45.4526566, + "lon": -0.4387773, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "survey:date": "2022-11-27" + } + }, + { + "type": "node", + "id": 10223538519, + "lat": 45.4526563, + "lon": -0.4387309, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "survey:date": "2022-11-27" + } + }, + { + "type": "node", + "id": 10223802667, + "lat": 4.9261306, + "lon": -52.2879005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Wallbox" + } + }, + { + "type": "node", + "id": 10225793178, + "lat": 44.3810079, + "lon": 2.000071, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10225907706, + "lat": 47.373828, + "lon": 0.8106038, + "tags": { + "amenity": "charging_station", + "description": "2 bornes voit elec, En Route Vers Demain (Leclerc)" + } + }, + { + "type": "node", + "id": 10227750608, + "lat": 43.1757417, + "lon": 2.994116, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR22", + "payment:american_express": "yes", + "payment:cash": "no", + "payment:cryptocurrencies": "no", + "payment:debit_cards": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PJJCKVGEFJL", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 10228694992, + "lat": 49.0371085, + "lon": 3.4085468, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "operator": "CARCT", + "start_date": "2022-03" + } + }, + { + "type": "node", + "id": 10231366413, + "lat": 48.810535, + "lon": 1.7653056, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10231999647, + "lat": 48.081834, + "lon": -1.6827535, + "tags": { + "access": "yes", + "addr:city": "Rennes", + "addr:housenumber": "48", + "addr:postcode": "35000", + "addr:street": "avenue du Canada", + "amenity": "charging_station", + "capacity": "6", + "charge": "0,44€/kWh", + "fee": "yes", + "name": "Electra - Rennes - Novotel Rennes Alma", + "operator": "Electra", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "6", + "socket:type2_combo:output": "225 kW" + } + }, + { + "type": "node", + "id": 10234569225, + "lat": 48.0113067, + "lon": 6.6039298, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Schneider Electric", + "capacity": "2", + "charge": "0.25 €/kWh", + "contact:phone": "0 986 87 85 85", + "contact:website": "https://e-mobility.lidl.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Remiremont - Lidl", + "network": "Lidl", + "opening_hours": "24/7", + "operator": "be.Energised", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10235326478, + "lat": 43.0226645, + "lon": 1.4682772, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10235824969, + "lat": 48.3696496, + "lon": 6.2812193, + "tags": { + "amenity": "charging_station", + "brand": "ABB", + "capacity": "2", + "charge": "0.25 €/kWh", + "contact:phone": "0 986 87 85 85", + "contact:website": "https://e-mobility.lidl.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Charmes - Lidl", + "network": "Lidl", + "parking:fee": "no", + "ref": "439;440;441", + "socket:chademo": "1", + "socket:chademo:current": "120", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "source": "BDOrtho IGN;survey" + } + }, + { + "type": "node", + "id": 10235824972, + "lat": 48.3699577, + "lon": 6.2822281, + "tags": { + "amenity": "charging_station", + "brand": "ABB", + "capacity": "2", + "charge": "0.25 €/kWh", + "contact:phone": "0 986 87 85 85", + "contact:website": "https://e-mobility.lidl.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Charmes - Lidl", + "network": "Lidl", + "parking:fee": "no", + "ref": "436;437;438", + "socket:chademo": "1", + "socket:chademo:current": "120", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:current": "63", + "socket:type2_cable:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:current": "125", + "socket:type2_combo:output": "50 kW", + "source": "BDOrtho IGN;survey" + } + }, + { + "type": "node", + "id": 10235902468, + "lat": 48.1876468, + "lon": 6.4776514, + "tags": { + "access": "customers", + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Volkswagen", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10237486221, + "lat": 47.85498, + "lon": 6.8185823, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Maurice-sur-Moselle - Rue de Lorraine", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "145475;145476;145477", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW" + } + }, + { + "type": "node", + "id": 10237917219, + "lat": 46.1857949, + "lon": 4.7523511, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10238041740, + "lat": 48.3488443, + "lon": 6.3205853, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "operator": "Le Relais de Vincey", + "socket:type2_cable": "1", + "socket:type2_cable:output": "11 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10238041741, + "lat": 48.3488126, + "lon": 6.3205618, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "operator": "Le Relais de Vincey", + "socket:type2_cable": "1", + "socket:type2_cable:output": "22 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10238041742, + "lat": 48.3487788, + "lon": 6.320535, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "operator": "Le Relais de Vincey", + "socket:type2_cable": "1", + "socket:type2_cable:output": "22 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10238057454, + "lat": 48.2731427, + "lon": 6.3963079, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Scame", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Igney - Mairie", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "TMDC1;TMDC2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10238062846, + "lat": 48.3073945, + "lon": 6.3836481, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "charging_station:output": "18 kW", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Nomexy - Rue Sœur Sidonie", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "150251;150252;150253", + "socket:chademo": "1", + "socket:chademo:output": "20 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10238140034, + "lat": 48.2507035, + "lon": 6.4189222, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Thaon-les-Vosges - Parking Mairie", + "opening_hours": "24/7", + "operator": "Mairie de Thaon-les-Vosges", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10238215532, + "lat": 48.045917, + "lon": 6.5811786, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "charging_station:output": "18 kW", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Nabord - Rue de la Croix Saint-Jacques", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "15058;15059;15060", + "socket:chademo": "1", + "socket:chademo:output": "20 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "20 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10238271543, + "lat": 48.0791748, + "lon": 6.6048555, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "contact:email": "contact@properphi.com", + "contact:phone": "+33 6 03 06 20 98", + "fee": "yes", + "fixme": "à replacer et compléter précisément car vues de loin, portail fermé", + "motorcar": "yes", + "name": "Éloyes - Mauffrey Academy", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Ecophi Mobility", + "owner": "SCI Mauffrey Immobilier", + "parking:fee": "no", + "source": "survey;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10238271544, + "lat": 48.0791297, + "lon": 6.6048087, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "contact:email": "contact@properphi.com", + "contact:phone": "+33 6 03 06 20 98", + "fee": "yes", + "fixme": "à replacer et compléter précisément car vues de loin, portail fermé", + "motorcar": "yes", + "name": "Éloyes - Mauffrey Academy", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Ecophi Mobility", + "owner": "SCI Mauffrey Immobilier", + "parking:fee": "no", + "source": "survey;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10238271545, + "lat": 48.0790786, + "lon": 6.6047484, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "contact:email": "contact@properphi.com", + "contact:phone": "+33 6 03 06 20 98", + "fee": "yes", + "fixme": "à replacer et compléter précisément car vues de loin, portail fermé", + "motorcar": "yes", + "name": "Éloyes - Mauffrey Academy", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Ecophi Mobility", + "owner": "SCI Mauffrey Immobilier", + "parking:fee": "no", + "source": "survey;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10238271546, + "lat": 48.0790305, + "lon": 6.6046908, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "contact:email": "contact@properphi.com", + "contact:phone": "+33 6 03 06 20 98", + "fee": "yes", + "fixme": "à replacer et compléter précisément car vues de loin, portail fermé", + "motorcar": "yes", + "name": "Éloyes - Mauffrey Academy", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Ecophi Mobility", + "owner": "SCI Mauffrey Immobilier", + "parking:fee": "no", + "source": "survey;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10238271547, + "lat": 48.0789721, + "lon": 6.604626, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "contact:email": "contact@properphi.com", + "contact:phone": "+33 6 03 06 20 98", + "fee": "yes", + "fixme": "à replacer et compléter précisément car vues de loin, portail fermé", + "motorcar": "yes", + "name": "Éloyes - Mauffrey Academy", + "note": "Recharge accessible pendant les horaires d'ouverture du site", + "opening_hours": "Mo-Fr 08:00-18:00", + "operator": "Ecophi Mobility", + "owner": "SCI Mauffrey Immobilier", + "parking:fee": "no", + "source": "survey;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10238928893, + "lat": 48.069781, + "lon": 6.8676284, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Gérardmer - Avenue de la Ville de Vichy", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "145510;145511;145512", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW", + "source": "survey", + "start_date": "2022-10-07" + } + }, + { + "type": "node", + "id": 10238928894, + "lat": 48.072181, + "lon": 6.8718676, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Gérardmer - Place des Déportés", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "145636;145637;145638", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10238993275, + "lat": 44.3640972, + "lon": 2.5723545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Delta Electronics", + "model": "UFC 200", + "network": "Reveo", + "payment:contactless": "only", + "payment:credit_cards": "only", + "socket:chademo": "yes", + "source": "survey 2022", + "start_date": "11-2022" + } + }, + { + "type": "node", + "id": 10239587022, + "lat": 47.322007, + "lon": 0.9159802, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "source": "survey" + } + }, + { + "type": "node", + "id": 10239728836, + "lat": 48.9347972, + "lon": 2.0568578, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10239728837, + "lat": 48.9347981, + "lon": 2.0568294, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10240076408, + "lat": 49.5277528, + "lon": 1.0448083, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "karine.moreno@metropole-rouen-normandie.fr", + "motorcar": "yes", + "network": "Metropole Rouen Normandie", + "opening_hours": "Mo-Fr 01:00-00:00,Th 01:00-00:00", + "operator": "Metropole Rouen Normandie", + "owner": "Metropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76402002", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10240140450, + "lat": 48.2025125, + "lon": 5.9449414, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Vittel - Rue Robert de Flers", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 10240140451, + "lat": 48.10829, + "lon": 5.8255622, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Martigny - Avenue de la Gare", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 10240184169, + "lat": 48.0877, + "lon": 6.0440927, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Darney - Champ de Foire", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "18 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr;bulletin municipal n°16" + } + }, + { + "type": "node", + "id": 10240255556, + "lat": 48.3174499, + "lon": 5.5813298, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "fixme": "position à affiner, caractéristiques à compléter", + "motorcar": "yes", + "name": "Liffol-le-Grand - Place d'Armes", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 10240301150, + "lat": 48.3853634, + "lon": 6.6022677, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "fixme": "position à confirmer", + "motorcar": "yes", + "name": "Roville-aux-Chênes - Rue de la Mortagne", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 10240301151, + "lat": 48.0813576, + "lon": 6.9248456, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Xonrupt-Longemer - Allée des Écoliers", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "145648;145649;145650", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr;survey", + "start_date": "2022-12-08" + } + }, + { + "type": "node", + "id": 10240301152, + "lat": 48.0442572, + "lon": 6.4020313, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "fixme": "position et caractéristiques à confirmer", + "motorcar": "yes", + "name": "Xertigny - Place de la Brasserie", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 10240301153, + "lat": 48.2686164, + "lon": 6.9785821, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "fixme": "position à confirmer", + "motorcar": "yes", + "name": "Sainte-Marguerite - Rue de la Meurthe", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "data.gouv.fr" + } + }, + { + "type": "node", + "id": 10240301154, + "lat": 47.9263634, + "lon": 6.6605493, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Rupt-sur-Moselle - Rue Louis Courroy", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "145479;145480;145481", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "Ortho HR;data.gouv.fr;survey" + } + }, + { + "type": "node", + "id": 10240668560, + "lat": 48.1728158, + "lon": 6.4523386, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Épinal - Parking de la Louvière", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "25 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "BDOrtho IGN;survey", + "start_date": "2022-08-08" + } + }, + { + "type": "node", + "id": 10240804822, + "lat": 48.1868439, + "lon": 6.4708909, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Épinal - Palais des Sports", + "network": "LastMileSolutions", + "opening_hours": "24/7", + "operator": "Engie Solutions", + "parking:fee": "no", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "150 kW", + "source": "BDOrtho IGN;survey", + "start_date": "2022-10-10" + } + }, + { + "type": "node", + "id": 10240931958, + "lat": 48.177212, + "lon": 6.4472493, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "DBT", + "capacity": "2", + "contact:email": "support@modulo-energies.fr", + "contact:phone": "0800 37 37 40", + "contact:website": "https://modulo-energies.fr/", + "fee": "yes", + "motorcar": "yes", + "name": "Épinal - Place Jeanne-d'Arc", + "network": "Modulo", + "opening_hours": "24/7", + "operator": "SDEV", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:chademo:output": "22 kW", + "socket:type2": "1", + "socket:type2:output": "25 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "25 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10241008510, + "lat": 48.1984313, + "lon": 6.4812188, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10241008511, + "lat": 48.198472, + "lon": 6.4811866, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10241222465, + "lat": 46.1941291, + "lon": 6.256512, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "email": "exploitation@driveco.com", + "motorcar": "yes", + "network": "Peugeot", + "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": "FR*SSD*PBYMYCAR741001", + "socket:type2": "3", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10241724382, + "lat": 47.8856011, + "lon": 6.8538383, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Bussang - Mairie", + "opening_hours": "24/7", + "operator": "Mairie de Bussang", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 10242222757, + "lat": 47.9998925, + "lon": 6.2622057, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Hager", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "La Vôge-les-Bains - Place de la Fête", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "11 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 10242321300, + "lat": 48.0833589, + "lon": 6.7447163, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Le Tholy - Route du Petit Paradis", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "NHNM1;NHNM2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10242361997, + "lat": 50.3367148, + "lon": 3.2029036, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "1", + "operator": "SMTD", + "start_date": "2021", + "website": "https://www.smtd.fr/pole-mobilite/le-velo-sur-le-douaisis-et-lostrevent/les-abris-velos-securises/abri-velos-commerces-a-masny" + } + }, + { + "type": "node", + "id": 10242397277, + "lat": 50.4148748, + "lon": 3.0533689, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "no", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Douaisis Agglo", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H04*P59028002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "start_date": "2022", + "website": "https://www.smtd.fr/pole-mobilite/le-velo-sur-le-douaisis-et-lostrevent/les-abris-velos-securises/abri-velos-republique-a-auby" + } + }, + { + "type": "node", + "id": 10242407206, + "lat": 50.3742856, + "lon": 3.0663775, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "1", + "fee": "no", + "motor_vehicle": "no", + "operator": "SMTD", + "website": "https://www.smtd.fr/pole-mobilite/le-velo-sur-le-douaisis-et-lostrevent/les-abris-velos-securises/abri-velos-pont-desquerchin" + } + }, + { + "type": "node", + "id": 10242499891, + "lat": 46.3746397, + "lon": 5.9739079, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 10243270711, + "lat": 48.0487391, + "lon": 0.1732616, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10244159822, + "lat": 48.198505, + "lon": 6.4751644, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "contact:email": "support@powerdot.fr", + "contact:phone": "+33 1 76 36 05 25", + "fee": "yes", + "motorcar": "yes", + "name": "Jeuxey - La Boucherie", + "network": "Power Dot", + "opening_hours": "24/7", + "operator": "Power Dot France", + "parking:fee": "no", + "ref:EU:EVSE": "FR*GFX*ELBC*EPI*ALF0005", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "source": "Ortho HR;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10244159823, + "lat": 47.922396, + "lon": 6.6604378, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "contact:email": "support@powerdot.fr", + "contact:phone": "+33 1 76 36 05 25", + "fee": "yes", + "motorcar": "yes", + "name": "Rupt-sur-Moselle - Intermarché", + "network": "Power Dot", + "opening_hours": "24/7", + "operator": "Power Dot France", + "parking:fee": "no", + "payment:visa": "yes", + "ref:EU:EVSE": "FR*GFX*EITM*RSM*KP5001", + "socket:chademo": "1", + "socket:chademo:output": "40 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "40 kW", + "source": "Ortho HR;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10244159824, + "lat": 48.1994825, + "lon": 6.7261494, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "contact:website": "https://www.e.leclerc/e/la-borne-de-recharge", + "fee": "yes", + "motorcar": "yes", + "name": "Bruyères - E. Leclerc", + "opening_hours": "24/7", + "parking:fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10244470035, + "lat": 48.7640148, + "lon": 1.2150353, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot", + "opening_hours": "24/7", + "operator": "Power Dot", + "owner": "Power Dot", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10245126362, + "lat": 47.9005261, + "lon": 6.8660722, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "yes", + "brand": "Swish", + "capacity": "1", + "contact:website": "https://swishforgood.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Bussang - Rue Larcenaire", + "network": "Modulo", + "note": "Borne 2 sur parking privé", + "opening_hours": "24/7", + "operator": "Azureva", + "parking:fee": "no", + "ref": "137792", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10245126363, + "lat": 47.9005409, + "lon": 6.8660427, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "brand": "Swish", + "capacity": "1", + "contact:website": "https://swishforgood.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Bussang - Rue Larcenaire", + "network": "Modulo", + "note": "Borne 1 sur parking privé", + "opening_hours": "24/7", + "operator": "Azureva", + "parking:fee": "no", + "ref": "137749", + "socket:type2": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10245133853, + "lat": 49.0989938, + "lon": 6.2996081, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10245152888, + "lat": 47.890631, + "lon": 6.7394176, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Cahors", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Ramonchamp - Rue de l'État", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "QCSM1;QCSM2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 10246064004, + "lat": 50.5605331, + "lon": 2.2907646, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H01*P62336001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10246213911, + "lat": 48.197612, + "lon": 6.4396962, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Scame", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Golbey - Rue de l'Hôtel de Ville", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10247553915, + "lat": 48.2028488, + "lon": 6.7199287, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Schneider Electric", + "capacity": "2", + "contact:website": "https://e-mobility.lidl.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Bruyères - Lidl", + "network": "Lidl", + "parking:fee": "no", + "ref": "333;334", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10247623742, + "lat": 48.2156356, + "lon": 6.9449687, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Schneider Electric", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Léonard - Mairie", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "RUEK1;RUEK2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10247623743, + "lat": 48.1824706, + "lon": 7.0036481, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Schneider Electric", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Fraize - Place Jean Sonrel", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "RUNA1;RUNA2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10249148960, + "lat": 48.4300616, + "lon": 0.774444, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10249714124, + "lat": 48.8729797, + "lon": 2.3782093, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714125, + "lat": 48.8729406, + "lon": 2.3782306, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714126, + "lat": 48.8728994, + "lon": 2.378253, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714127, + "lat": 48.8728681, + "lon": 2.378279, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714128, + "lat": 48.872829, + "lon": 2.3783025, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714129, + "lat": 48.8727891, + "lon": 2.3783224, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714130, + "lat": 48.8727419, + "lon": 2.3783395, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249714145, + "lat": 48.8727111, + "lon": 2.3783727, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Belib'", + "opening_hours": "24/7", + "operator": "Mairie de Paris", + "owner": "Mairie de Paris" + } + }, + { + "type": "node", + "id": 10249929925, + "lat": 44.5495072, + "lon": 4.7475173, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10251093101, + "lat": 43.2297679, + "lon": 0.0800131, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10253259653, + "lat": 50.7222515, + "lon": 2.1715493, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté de Communes du Pays de Lumbres", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H10*P62794001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10253671847, + "lat": 45.7621685, + "lon": 4.8986396, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "motorcar": "yes", + "operator": "izivia", + "ref": "VIL04A" + } + }, + { + "type": "node", + "id": 10253671848, + "lat": 45.7622367, + "lon": 4.8987689, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "motorcar": "yes", + "operator": "izivia", + "ref": "VIL 04B" + } + }, + { + "type": "node", + "id": 10253686817, + "lat": 44.0562874, + "lon": 4.8349759, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10253752530, + "lat": 48.2851473, + "lon": 6.9503103, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Schneider Electric", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Dié-des-Vosges - Quai Maréchal Leclerc", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10253783946, + "lat": 48.2166264, + "lon": 6.941864, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Léonard - Rue de la Gare", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "AVUA1;AVUA2", + "socket:type2": "2", + "socket:type2:output": "7 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10253859931, + "lat": 48.1762851, + "lon": 6.4536517, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "location": "indoor", + "motorcar": "yes", + "name": "Épinal - Q-Park Saint-Michel", + "network": "Ivizia", + "opening_hours": "24/7", + "operator": "Q-Park", + "parking:fee": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10253859932, + "lat": 48.1763191, + "lon": 6.4535981, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "location": "indoor", + "motorcar": "yes", + "name": "Épinal - Q-Park Saint-Michel", + "network": "Ivizia", + "opening_hours": "24/7", + "operator": "Q-Park", + "parking:fee": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10253859933, + "lat": 48.1763459, + "lon": 6.4535558, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "yes", + "capacity": "1", + "fee": "yes", + "location": "indoor", + "motorcar": "yes", + "name": "Épinal - Q-Park Saint-Michel", + "network": "Ivizia", + "opening_hours": "24/7", + "operator": "Q-Park", + "parking:fee": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10257789377, + "lat": 48.3561047, + "lon": 5.6897847, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Scame", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Neufchâteau - Rue de la 1re Armée Française", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10257789378, + "lat": 48.3560744, + "lon": 5.6897029, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "brand": "Scame", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Neufchâteau - Rue de la 1re Armée Française", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10258963708, + "lat": 45.7311326, + "lon": 3.1001153, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 10259225136, + "lat": 48.2159562, + "lon": 6.4373258, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Total Energies", + "capacity": "2", + "motorcar": "yes", + "name": "Chavelot - BMW", + "opening_hours": "Mo-Fr 09:00-19:00", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "parking:fee": "no", + "ref:EU:EVSE": "FR*TCB*P*00707", + "socket:chademo": "1", + "socket:type2_cable": "1", + "socket:type2_combo": "1", + "source": "Ortho HR;data.gouv.fr" + } + }, + { + "type": "node", + "id": 10259242245, + "lat": 44.866862, + "lon": -0.5973455, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10259311078, + "lat": 44.9101871, + "lon": -0.2381399, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Biocoop saison bio", + "operator": "mobilygreen" + } + }, + { + "type": "node", + "id": 10259663399, + "lat": 50.7372173, + "lon": 3.1617597, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2_combo": "2", + "socket:type2_combo:output": "360 kW" + } + }, + { + "type": "node", + "id": 10259663400, + "lat": 50.7374258, + "lon": 3.1620337, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10259663401, + "lat": 50.7374002, + "lon": 3.162001, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "180 kW" + } + }, + { + "type": "node", + "id": 10259663402, + "lat": 50.7373585, + "lon": 3.1619459, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:chademo": "1", + "socket:chademo:output": "90 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10259663403, + "lat": 50.7372491, + "lon": 3.1618043, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "180 kW" + } + }, + { + "type": "node", + "id": 10259663404, + "lat": 50.7372729, + "lon": 3.1618349, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "180 kW" + } + }, + { + "type": "node", + "id": 10259663405, + "lat": 50.7373109, + "lon": 3.161882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2_combo": "2", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10259666010, + "lat": 50.7375487, + "lon": 3.1620021, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10259699009, + "lat": 50.6078292, + "lon": 3.0398948, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "operator": "Bouygues E&S", + "owner": "Métropole Européenne de Lille", + "ref:EU:EVSE": "FR*M59*P59350002", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10259714071, + "lat": 50.6174962, + "lon": 3.0095658, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "RME Loos", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*POEKE1PI8DM", + "socket:type2": "1", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10260959775, + "lat": 43.0386246, + "lon": 6.1313421, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "charge": "0.59 €/kWh", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:cards": "no", + "payment:cash": "no", + "payment:membership_card": "yes", + "socket:type2": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10261011262, + "lat": 43.0478711, + "lon": 6.148873, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10261123612, + "lat": 47.3976451, + "lon": 0.989888, + "tags": { + "amenity": "charging_station", + "brand": "Tesla", + "capacity": "1", + "charge": "0.35 €/kWh", + "fee": "yes", + "socket:type2_cable": "1" + } + }, + { + "type": "node", + "id": 10261123613, + "lat": 47.3976475, + "lon": 0.98985, + "tags": { + "amenity": "charging_station", + "brand": "Tesla", + "capacity": "1", + "charge": "0.35 €/kWh", + "fee": "yes", + "socket:type2_cable": "1" + } + }, + { + "type": "node", + "id": 10261123614, + "lat": 47.3976428, + "lon": 0.9899235, + "tags": { + "amenity": "charging_station", + "brand": "Tesla", + "capacity": "1", + "charge": "0.35 €/kWh", + "fee": "yes", + "socket:type2_cable": "1" + } + }, + { + "type": "node", + "id": 10261176503, + "lat": 48.7789154, + "lon": 1.2047321, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-18:00", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10261176504, + "lat": 48.7789267, + "lon": 1.2048143, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "Mo-Sa 08:00-18:00", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10261193662, + "lat": 45.7655874, + "lon": 4.8282009, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/acces-au-reseau/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Paul", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY501A" + } + }, + { + "type": "node", + "id": 10261193663, + "lat": 45.7656248, + "lon": 4.8282009, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/acces-au-reseau/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Paul", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY501B" + } + }, + { + "type": "node", + "id": 10261193664, + "lat": 45.7656707, + "lon": 4.8281982, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/acces-au-reseau/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Paul", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY501C" + } + }, + { + "type": "node", + "id": 10261193665, + "lat": 45.7657072, + "lon": 4.8281975, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/acces-au-reseau/", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Saint-Paul", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY501D" + } + }, + { + "type": "node", + "id": 10261259995, + "lat": 45.2764208, + "lon": 4.8279768, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Saint-Rambert Est", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10263308438, + "lat": 47.8817777, + "lon": 6.7611569, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Ies", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Le Thillot - Avenue de Verdun", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "NVUD1;NVUD2", + "socket:chademo": "1", + "socket:chademo:output": "24 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW", + "source": "survey", + "start_date": "2022-12" + } + }, + { + "type": "node", + "id": 10265026454, + "lat": 45.7289495, + "lon": 4.876828, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY805B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10265026456, + "lat": 45.7290188, + "lon": 4.8767385, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY805A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10267012108, + "lat": 47.9270334, + "lon": 6.4862292, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Le Val-d'Ajol - Grande Rue", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "Ortho HR;survey" + } + }, + { + "type": "node", + "id": 10267087795, + "lat": 47.2229999, + "lon": 5.0109046, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Gevrey-Chambertin Est", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10267128974, + "lat": 47.2718827, + "lon": 5.0458067, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "IONITY Dijon Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10268097506, + "lat": 47.9205196, + "lon": 6.6629405, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "yes", + "brand": "Nexans", + "capacity": "2", + "contact:email": "support@freshmile.com", + "contact:phone": "+33 3 88 68 84 58", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "motorcar": "yes", + "name": "Rupt-sur-Moselle - Garage du Centre", + "network": "Freshmile", + "operator": "Freshmile", + "parking:fee": "no", + "payment:mastercard": "yes", + "payment:visa": "yes", + "ref": "REWC1;REWC2", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Ortho HR IGN;survey" + } + }, + { + "type": "node", + "id": 10268928502, + "lat": 50.6158002, + "lon": 3.1286728, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "R3", + "capacity": "2", + "fee": "yes", + "operator": "R3", + "payment:cash": "no", + "payment:contactless": "yes", + "payment:maestro": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "payment:visa_debit": "yes" + } + }, + { + "type": "node", + "id": 10268928503, + "lat": 50.615806, + "lon": 3.1285926, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "R3", + "capacity": "1", + "fee": "yes", + "operator": "R3", + "payment:cash": "no", + "payment:contactless": "yes", + "payment:maestro": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "payment:visa_debit": "yes" + } + }, + { + "type": "node", + "id": 10268928504, + "lat": 50.6158035, + "lon": 3.1286241, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "R3", + "capacity": "1", + "fee": "yes", + "operator": "R3", + "payment:cash": "no", + "payment:contactless": "yes", + "payment:maestro": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "payment:visa_debit": "yes" + } + }, + { + "type": "node", + "id": 10268928505, + "lat": 50.614936, + "lon": 3.1294075, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "wattpark", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10268928506, + "lat": 50.6148515, + "lon": 3.1294043, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "wattpark", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10268928507, + "lat": 50.6148937, + "lon": 3.1294059, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "wattpark", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10269445084, + "lat": 49.1435626, + "lon": 6.6899491, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10269773604, + "lat": 48.815051, + "lon": 2.1934385, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sigeif" + } + }, + { + "type": "node", + "id": 10269906981, + "lat": 49.121574, + "lon": -0.567159, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "contact:email": "web@freshmile.com", + "contact:phone": "+33369246732", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "MobiSDEC", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*S14*PX76NRT9OK4", + "socket:type2": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10270150384, + "lat": 16.3290056, + "lon": -61.7009229, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10270189830, + "lat": 16.3289777, + "lon": -61.7008589, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10271257937, + "lat": 47.5781375, + "lon": 7.5336853, + "tags": { + "amenity": "charging_station", + "name": "Powerdot" + } + }, + { + "type": "node", + "id": 10271677147, + "lat": 45.7592622, + "lon": 3.1343255, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "survey:date": "2022-05-20" + } + }, + { + "type": "node", + "id": 10271684139, + "lat": 45.7053024, + "lon": 4.9014282, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "SPR04B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10271684140, + "lat": 45.705353, + "lon": 4.9013464, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "SPR04A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10272502363, + "lat": 50.5949234, + "lon": 3.1302124, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10272502409, + "lat": 50.5953204, + "lon": 3.1302898, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10272502548, + "lat": 50.5957096, + "lon": 3.1320906, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "5", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Dream Energy, Arteparc Lesquin", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PQ4JVAXJQH0", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "3", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10272502620, + "lat": 50.5961815, + "lon": 3.1312571, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10272502621, + "lat": 50.5961462, + "lon": 3.1313067, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10272502622, + "lat": 50.5961089, + "lon": 3.1313546, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10272842728, + "lat": 48.8275459, + "lon": 7.7937923, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10272842729, + "lat": 48.8275197, + "lon": 7.7937684, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10272842730, + "lat": 48.8274956, + "lon": 7.7937436, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10272842731, + "lat": 48.8274692, + "lon": 7.7937227, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10272842732, + "lat": 48.8274435, + "lon": 7.7936984, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10272842733, + "lat": 48.8274166, + "lon": 7.7936737, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10273101425, + "lat": 50.4163993, + "lon": 2.9737076, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR13", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PSWR9LBHFPD", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10273642861, + "lat": 49.2479334, + "lon": 1.1884465, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "IONITY Val de Reuil", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10275471643, + "lat": 48.8180105, + "lon": 1.9470395, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Communauté Agglomération Saint Quentin en Yvelines", + "socket:type2": "4", + "socket:type2:output": "22kW" + } + }, + { + "type": "node", + "id": 10275716590, + "lat": 45.7368523, + "lon": 4.9180385, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "BRN04A", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10275716591, + "lat": 45.7368387, + "lon": 4.9179777, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "BRN04B", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10275855747, + "lat": 45.7522944, + "lon": 5.1993401, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Lidl", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q111209120", + "payment:app": "yes", + "ref": "LNPS1-LNPS2", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10275855748, + "lat": 45.7524334, + "lon": 5.1994971, + "tags": { + "amenity": "charging_station", + "amperage": "200", + "brand": "ABB", + "brand:wikidata": "Q52825", + "capacity": "2", + "fee": "yes", + "name": "Lidl", + "opening_hours": "24/7", + "operator": "Freshmile", + "operator:wikidata": "Q111209120", + "payment:app": "yes", + "ref": "LPXM1-LPXM2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10276209213, + "lat": 43.6380038, + "lon": 1.445694, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Toulibeo", + "operator": "Bouygues" + } + }, + { + "type": "node", + "id": 10276584640, + "lat": 46.2117481, + "lon": 4.7552994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10277615102, + "lat": 50.2907234, + "lon": 2.7821313, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041007", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10279697223, + "lat": 45.1689857, + "lon": 5.7534396, + "tags": { + "amenity": "charging_station", + "brand": "Mennekes", + "capacity:charging": "13", + "motorcar": "yes", + "network": "Enerstock" + } + }, + { + "type": "node", + "id": 10279833123, + "lat": 48.6975018, + "lon": 5.9082969, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10279833124, + "lat": 48.6976204, + "lon": 5.9083948, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10279833125, + "lat": 48.6732236, + "lon": 5.9238578, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "operator": "Volkswagen", + "source": "survey" + } + }, + { + "type": "node", + "id": 10280264327, + "lat": 44.6451464, + "lon": 1.2245112, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "FDEL - 46", + "payment:credit_cards": "yes", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S46*P46066001", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10281911724, + "lat": 43.2721046, + "lon": 5.4103205, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10282258922, + "lat": 44.369227, + "lon": 2.586117, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "name": "IONITY Rodez", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "ref": "1", + "ref:EU:EVSE": "FR*ION*E4594*01", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "survey 2023" + } + }, + { + "type": "node", + "id": 10282766914, + "lat": 49.5243848, + "lon": 0.7258349, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10284249609, + "lat": 43.9518587, + "lon": 4.2147915, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S30*P30255002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10285910537, + "lat": 48.6003006, + "lon": 7.7803871, + "tags": { + "amenity": "charging_station", + "capacity": "50", + "fee": "yes", + "name": "Freshmile" + } + }, + { + "type": "node", + "id": 10287287582, + "lat": 48.0662263, + "lon": -0.7574189, + "tags": { + "access": "private", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "hgv": "no", + "motorcar": "yes", + "parking:fee": "no", + "protected": "barrier", + "scooter": "no" + } + }, + { + "type": "node", + "id": 10287320409, + "lat": 43.578245, + "lon": 1.2801154, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10287458110, + "lat": 48.8776902, + "lon": 2.2457273, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Sigeif", + "operator:wikidata": "Q3508360" + } + }, + { + "type": "node", + "id": 10287682179, + "lat": 43.3296095, + "lon": 5.4189247, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PEZBAZP1QTI", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10289187082, + "lat": 47.0713714, + "lon": -0.8491622, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10289187083, + "lat": 47.0714095, + "lon": -0.8491981, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10289281451, + "lat": 48.7502331, + "lon": 2.3007497, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "operator": "Metropolis", + "payment:credit_cards": "yes", + "socket:type2": "6", + "socket:type2:output": "22 kW", + "website": "https://www.metropolis-recharge.fr" + } + }, + { + "type": "node", + "id": 10289977215, + "lat": 48.9132445, + "lon": 2.3830583, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "contact:email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P93001A", + "reservation": "yes", + "socket:type2": "4", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10289977218, + "lat": 48.9091707, + "lon": 2.3787497, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CITYNETWORKS", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P93001C", + "reservation": "yes", + "socket:type2": "4", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10290179485, + "lat": 49.609008, + "lon": 3.8015713, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "DIRVE 02 Aisne", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S02*PQCXCXZ", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10290342376, + "lat": 46.916084, + "lon": 6.3380774, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10291145760, + "lat": 43.5524875, + "lon": 6.9558579, + "tags": { + "amenity": "charging_station", + "website": "my.thenewmotion.com" + } + }, + { + "type": "node", + "id": 10291354041, + "lat": 48.750671, + "lon": -0.0295492, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10292229602, + "lat": 45.6279051, + "lon": -1.0507838, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MOBIVE - SDEER 17", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MOBIVE - SDEER 17", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S17*PMB172012", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10292229603, + "lat": 45.6278808, + "lon": -1.0507744, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MOBIVE - SDEER 17", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MOBIVE - SDEER 17", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S17*PMB172011", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10292229606, + "lat": 45.624576, + "lon": -1.0292712, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MOBIVE - SDEER 17", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MOBIVE - SDEER 17", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S17*PMB171112", + "socket:chademo": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10292229607, + "lat": 45.6245624, + "lon": -1.0293168, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MOBIVE - SDEER 17", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MOBIVE - SDEER 17", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S17*PMB171111", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10292318157, + "lat": 43.1770794, + "lon": 2.5408697, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "12", + "fee": "yes", + "name": "Ionity Corbières Sud", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "12", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu" + } + }, + { + "type": "node", + "id": 10292323233, + "lat": 43.1781949, + "lon": 2.5427439, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "8", + "fee": "yes", + "fixme": "location aproximately", + "name": "Ionity Corbières Nord", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu" + } + }, + { + "type": "node", + "id": 10292770025, + "lat": 48.2803698, + "lon": 0.6052267, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10292857380, + "lat": 48.6550627, + "lon": 7.8317536, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10292892026, + "lat": 48.6575963, + "lon": 7.8275906, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10293061226, + "lat": 48.3872925, + "lon": -4.5262537, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Allego", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10293061227, + "lat": 48.3873029, + "lon": -4.526246, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "operator": "Allego", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10293061228, + "lat": 48.3873651, + "lon": -4.5261964, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Allego", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10293061229, + "lat": 48.3873994, + "lon": -4.5261748, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Allego", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10293061230, + "lat": 48.3874113, + "lon": -4.5261658, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Allego", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10293181373, + "lat": 44.1948524, + "lon": 4.7325817, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "16", + "fee": "yes", + "name": "IONITY Mornas Village", + "network": "Ionity", + "operator": "Ionity", + "payment:app": "yes", + "payment:rfid_card": "yes", + "socket:type2_combo": "16", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10293194912, + "lat": 44.2166277, + "lon": 4.7230384, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "16", + "fee": "yes", + "fixme": "location approximately", + "name": "IONITY Mornas les Adrets", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:rfid_card": "yes", + "socket:type2_combo": "16", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10293509818, + "lat": 49.049474, + "lon": 7.7214233, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10293771025, + "lat": 48.6064384, + "lon": 7.7362416, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 10295363712, + "lat": 44.3609317, + "lon": 2.6043713, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "source": "survey 2022;ortho hr 2019" + } + }, + { + "type": "node", + "id": 10295676756, + "lat": 48.5553106, + "lon": -3.1511155, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "socket:type2:output": "3" + } + }, + { + "type": "node", + "id": 10295676757, + "lat": 48.5553822, + "lon": -3.1507016, + "tags": { + "amenity": "charging_station", + "capacity": "16", + "socket:type2:output": "22.1" + } + }, + { + "type": "node", + "id": 10295676764, + "lat": 48.5510958, + "lon": -3.1479648, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "socket:type2": "yes", + "socket:type2:output": "40" + } + }, + { + "type": "node", + "id": 10295676765, + "lat": 48.5511029, + "lon": -3.147911, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "socket:chademo": "yes", + "socket:type2:output": "40" + } + }, + { + "type": "node", + "id": 10295759940, + "lat": 48.7240484, + "lon": 2.2627261, + "tags": { + "access": "permissive", + "amenity": "charging_station", + "capacity": "2", + "level": "-3", + "location": "parking", + "name": "Effia Charging Station", + "opening_hours": "24/7", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 10296154866, + "lat": 45.7561082, + "lon": 4.8016085, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "LY503B" + } + }, + { + "type": "node", + "id": 10296154888, + "lat": 45.7471145, + "lon": 4.7985867, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "brand:website": "https://grandlyon.izivia.com/", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "SFL01A" + } + }, + { + "type": "node", + "id": 10296538290, + "lat": 48.6595557, + "lon": 2.5659179, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "name": "Stations-e" + } + }, + { + "type": "node", + "id": 10296980907, + "lat": 47.2791483, + "lon": -2.0565938, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "charging_station:output": "22", + "fee": "yes", + "name": "Corsept", + "opening_hours": "24/7", + "operator": "Ouest-Charge", + "owner": "Sydela", + "payment:app": "yes", + "payment:cash": "no", + "payment:credit_cards": "no", + "payment:debit_cards": "no", + "payment:electronic_purses": "no", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://www.ouestcharge-paysdelaloire-moncompte.fr/fr/connexion" + } + }, + { + "type": "node", + "id": 10297023047, + "lat": 45.616109, + "lon": 4.6711985, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10297039134, + "lat": 47.2894107, + "lon": -2.0278308, + "tags": { + "alt_name": "Paimboeuf - Sadi-Carnot", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "charging_station:output": "22 kW", + "fee": "yes", + "name": "Paimbœuf - Sadi-Carnot", + "opening_hours": "24/7", + "operator": "Ouest-Charge", + "owner": "Sydela", + "payment:app": "yes", + "payment:cash": "no", + "payment:credit_cards": "no", + "payment:debit_cards": "no", + "payment:electronic_purses": "no", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://www.ouestcharge-paysdelaloire-moncompte.fr/fr/connexion" + } + }, + { + "type": "node", + "id": 10297039135, + "lat": 47.2595114, + "lon": -2.0173813, + "tags": { + "addr:housenumber": "3 ter", + "addr:street": "Rue du Parc des Sports", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "charging_station:output": "22", + "fee": "yes", + "fixme": "Emplacement exact à vérifier", + "name": "Saint-Viaud - Parc Des Sports", + "opening_hours": "24/7", + "operator": "Ouest-Charge", + "owner": "Sydela", + "payment:app": "yes", + "payment:cash": "no", + "payment:credit_cards": "no", + "payment:debit_cards": "no", + "payment:electronic_purses": "no", + "socket:type2": "2", + "socket:typee": "2", + "website": "https://www.ouestcharge-paysdelaloire-moncompte.fr/fr/connexion" + } + }, + { + "type": "node", + "id": 10297075612, + "lat": 45.1869571, + "lon": 5.7031517, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "operator": "Caisse d'Epargne", + "ref": "ZW015591", + "scooter": "yes", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10297178253, + "lat": 45.0971909, + "lon": 4.0597917, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SPBR1", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PN0APSWIASX", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10297891671, + "lat": 50.2903833, + "lon": 2.7686198, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041010", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10297897485, + "lat": 50.2857529, + "lon": 2.7595939, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041002", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10297897488, + "lat": 50.2971581, + "lon": 2.7814219, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041012", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10297914536, + "lat": 50.2932549, + "lon": 2.7790126, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041006", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10297914537, + "lat": 50.2962467, + "lon": 2.7780699, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.court@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "pass pass électrique", + "opening_hours": "24/7", + "operator": "Bouygues E&S", + "owner": "Communauté Urbaine d'Arras", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041014", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10298104300, + "lat": 46.3692503, + "lon": 6.4791991, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10300198798, + "lat": 48.0236244, + "lon": -0.3259019, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Saint-Denis d'Orques", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "160 kW" + } + }, + { + "type": "node", + "id": 10300352432, + "lat": 49.2215778, + "lon": 2.9101141, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10300562624, + "lat": 49.4760713, + "lon": 1.0942502, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Métropole Rouen Normandie", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*C01*P76451002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10300617904, + "lat": 44.3707063, + "lon": 2.5896976, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Shneider electric", + "model": "EVlink Smart Wallbox", + "operator": "Freshmile", + "socket:type2": "2", + "socket:type2:output": "22Kw", + "socket:typee": "2", + "source": "survey 2022" + } + }, + { + "type": "node", + "id": 10300967373, + "lat": 49.7557268, + "lon": 0.3808776, + "tags": { + "amenity": "charging_station", + "name": "SDE76 - Mairie de Fécamp" + } + }, + { + "type": "node", + "id": 10301326651, + "lat": 50.1732838, + "lon": 2.8735374, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "8", + "fee": "yes", + "name": "Fastned Aire de Saint-Léger", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10302959866, + "lat": 49.1484447, + "lon": 6.1664629, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10303319354, + "lat": 46.1678111, + "lon": 1.8854708, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Carrefour", + "scooter": "yes" + } + }, + { + "type": "node", + "id": 10304437046, + "lat": 44.2617823, + "lon": 0.9568297, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10304617174, + "lat": 48.193932, + "lon": 6.4663017, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "operator": "Modulo" + } + }, + { + "type": "node", + "id": 10304802561, + "lat": 44.4059498, + "lon": 0.1875869, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "8", + "fee": "yes", + "name": "IONITY Mas-d’Agenais", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10304889410, + "lat": 43.6203974, + "lon": 1.3473415, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10308922769, + "lat": 50.7787249, + "lon": 1.6194104, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H05*P62893001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10310750609, + "lat": 48.7924848, + "lon": 2.3202155, + "tags": { + "amenity": "charging_station", + "survey:date": "2022-11-23" + } + }, + { + "type": "node", + "id": 10311243561, + "lat": 48.6969033, + "lon": 2.1594316, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "CPS", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*CPS*PCAPS2111", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10311251852, + "lat": 48.9551094, + "lon": 2.1871957, + "tags": { + "amenity": "charging_station", + "capacity": "8" + } + }, + { + "type": "node", + "id": 10311280829, + "lat": 48.9546806, + "lon": 2.1884332, + "tags": { + "amenity": "charging_station", + "capacity": "8" + } + }, + { + "type": "node", + "id": 10311290358, + "lat": 48.7301481, + "lon": 2.259024, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Station de recharge" + } + }, + { + "type": "node", + "id": 10311482566, + "lat": 43.2312911, + "lon": 0.0747313, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10311482567, + "lat": 43.231296, + "lon": 0.0746719, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10312108469, + "lat": 46.9122727, + "lon": 6.3238831, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey" + } + }, + { + "type": "node", + "id": 10313173710, + "lat": 45.4454512, + "lon": -0.4319374, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-01-07" + } + }, + { + "type": "node", + "id": 10313478635, + "lat": 44.7093914, + "lon": -0.7367748, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10313478636, + "lat": 44.7094618, + "lon": -0.7366937, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10315710191, + "lat": 43.5993754, + "lon": 1.2353883, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10316381774, + "lat": 45.1150507, + "lon": 4.2922241, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SPBR1", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PUINJVNH6Q6", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10316490896, + "lat": 43.6488857, + "lon": 1.4687357, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10316553337, + "lat": 45.9912805, + "lon": -1.0770678, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "check_date": "2022-11-07", + "email": "support@freshmile.com", + "fee": "yes", + "fixme": "manque operator, owner, network, ref:EU:EVSE et corriger précision emplacement", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Système U", + "phone": "+33388688458", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey", + "website": "https://freshmile.com" + } + }, + { + "type": "node", + "id": 10537962352, + "lat": 49.6016951, + "lon": 4.9571869, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "24", + "fee": "yes", + "operator": "Virta", + "payment:app": "yes", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes" + } + }, + { + "type": "node", + "id": 10537972795, + "lat": 48.0413975, + "lon": -1.6946495, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10538754143, + "lat": 48.4609431, + "lon": -3.5215655, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "OUEST CHARGE - 22", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S22*PSDE24211", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10540891656, + "lat": 47.5005618, + "lon": 6.812298, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "17", + "fee": "yes", + "name": "Tesla Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:type2": "1", + "socket:type2:output": "7.4kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "250kW" + } + }, + { + "type": "node", + "id": 10540891666, + "lat": 47.5079357, + "lon": 6.7990676, + "tags": { + "access": "customers", + "addr:housenumber": "40", + "addr:street": "Rue de Belfort", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Hôtel La Balance", + "socket:type2": "1", + "socket:type2:output": "7.4kW" + } + }, + { + "type": "node", + "id": 10542679941, + "lat": 48.5939796, + "lon": 1.6753529, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "4", + "charge": "0,30 €/kWh", + "fee": "yes", + "motorcar": "yes", + "name": "ChargePoint", + "opening_hours": "24/7", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10542735529, + "lat": 50.7701692, + "lon": 3.08347, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10542855809, + "lat": 45.188084, + "lon": 5.7664303, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-01-12" + } + }, + { + "type": "node", + "id": 10542879887, + "lat": 49.1277985, + "lon": 6.7102598, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10550781912, + "lat": 45.4377735, + "lon": -0.4526936, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "08:30-19:00", + "operator": "Intermarché", + "survey:date": "2023-01-13" + } + }, + { + "type": "node", + "id": 10555113156, + "lat": 48.4818902, + "lon": -2.168238, + "tags": { + "amenity": "charging_station", + "opening_hours": "24/7", + "operator": "Brev'Car" + } + }, + { + "type": "node", + "id": 10555150591, + "lat": 43.7153685, + "lon": 4.1333065, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "charging_station:output": "300 kW", + "fee": "yes", + "name": "Fastned Aire d'Ambrussum Nord", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "8", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10555175239, + "lat": 45.1375714, + "lon": 0.7010691, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "IONITY Périgueux Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu/en/network/network-status" + } + }, + { + "type": "node", + "id": 10555243728, + "lat": 45.8505791, + "lon": 4.2261241, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Loire", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu/en/network/network-status" + } + }, + { + "type": "node", + "id": 10555265244, + "lat": 45.6601347, + "lon": 3.1535811, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Veyre", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu/en/network/network-status" + } + }, + { + "type": "node", + "id": 10555375749, + "lat": 46.0000493, + "lon": 6.1676922, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Fastned Aire de Groisy", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com/fr/emplacements" + } + }, + { + "type": "node", + "id": 10555399850, + "lat": 45.5767628, + "lon": 5.6342786, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Fastned Aire de Romagnieu", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com/fr/emplacements" + } + }, + { + "type": "node", + "id": 10555413146, + "lat": 45.998807, + "lon": 6.1668929, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Fastned Aire des Crêts Blancs", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com/fr/emplacements" + } + }, + { + "type": "node", + "id": 10555415454, + "lat": 45.2438956, + "lon": 5.8611132, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Fastned Aire de Saint Nazaire les Eymes", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW", + "website": "https://fastnedcharging.com/fr/emplacements" + } + }, + { + "type": "node", + "id": 10555659724, + "lat": 43.4186601, + "lon": -0.5847952, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity Lacq Audéjos Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu" + } + }, + { + "type": "node", + "id": 10555704070, + "lat": 43.650813, + "lon": 3.9833114, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity Montpellier Saint-Aunès", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW", + "website": "https://ionity.eu" + } + }, + { + "type": "node", + "id": 10556621753, + "lat": 50.739439, + "lon": 2.2716703, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Ford", + "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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PDUGARDINFORD622191", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10556621754, + "lat": 50.7397809, + "lon": 2.2685648, + "tags": { + "amenity": "charging_station", + "operator": "PASS PASS" + } + }, + { + "type": "node", + "id": 10556621755, + "lat": 50.7397514, + "lon": 2.268566, + "tags": { + "amenity": "charging_station", + "operator": "PASS PASS" + } + }, + { + "type": "node", + "id": 10556736209, + "lat": 50.6181521, + "lon": 3.0164947, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "RME" + } + }, + { + "type": "node", + "id": 10556941435, + "lat": 45.6951037, + "lon": 4.9384313, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 10557010282, + "lat": 43.1257844, + "lon": 0.3850208, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10559404095, + "lat": 45.6132121, + "lon": 5.2333936, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "name": "Borne libre accès Centre Commercial Les Sayes", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2", + "socket:typee:output": "3", + "source": "Terrain", + "voltage": "230" + } + }, + { + "type": "node", + "id": 10559495489, + "lat": 43.1694018, + "lon": 6.5245047, + "tags": { + "amenity": "charging_station", + "brand": "Lafon", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 10559495490, + "lat": 43.1694417, + "lon": 6.5245603, + "tags": { + "amenity": "charging_station", + "brand": "Lafon", + "parking:fee": "yes", + "socket:type2": "2", + "socket:type2:current": "32", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 10559666790, + "lat": 49.242983, + "lon": 3.9187464, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "name": "IONITY Vrigny", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10561723507, + "lat": 48.6957963, + "lon": 6.1245691, + "tags": { + "amenity": "charging_station", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 10562763291, + "lat": 44.0562896, + "lon": 4.8350584, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10563246218, + "lat": 49.2057475, + "lon": 6.6955265, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10563756754, + "lat": 48.8906644, + "lon": 2.3542297, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10565121335, + "lat": 48.6368351, + "lon": 2.269765, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "opening_hours": "Mo-Su 08:00-18:00" + } + }, + { + "type": "node", + "id": 10565831920, + "lat": 47.5918594, + "lon": 1.335591, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "email": "hello@powerdot.fr", + "motorcar": "yes", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*GFX*PNOVBLO", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10566027809, + "lat": 44.5818959, + "lon": 2.0705715, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "operator": "Bouygues E&S", + "owner": "FDEL - 46", + "ref:EU:EVSE": "FR*S46*P46055001", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10567134267, + "lat": 45.655405, + "lon": 6.3656594, + "tags": { + "access": "yes", + "addr": "La Galerie - Géant Albertville Z.I. du Chiriac 73200 Albertville", + "addr:city": "Albertville", + "addr:country": "FR", + "addr:postcode": "73200", + "addr:street": "Z.I. du Chiriac", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "fee": "yes", + "name": "Albertville Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250", + "website": "https://www.tesla.com/findus/location/supercharger/Albertvilleq222" + } + }, + { + "type": "node", + "id": 10567498628, + "lat": 46.1445294, + "lon": 5.2821869, + "tags": { + "access": "customers", + "addr": "Chemin du Champ de Chaux 01250 Tossiat", + "addr:city": "Tossiat", + "addr:country": "FR", + "addr:postcode": "01250", + "addr:street": "Chemin du Champ de Chaux", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "6", + "fee": "yes", + "name": "Bourg-en-Bresse Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "6", + "socket:tesla_supercharger_ccs:output": "250", + "website": "https://www.tesla.com/findus/location/supercharger/BourgenBresseSupercharger" + } + }, + { + "type": "node", + "id": 10567498629, + "lat": 48.653333, + "lon": 7.7322493, + "tags": { + "access": "yes", + "addr": "Shopping Promenade - Coeur Alsace 6 Boulevard des Enseignes Mundolsheim 67116", + "addr:city": "Mundolsheim", + "addr:country": "FR", + "addr:housenumber": "6", + "addr:postcode": "67116", + "addr:street": "Boulevard des Enseignes", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "fee": "yes", + "name": "Vendenheim Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250" + } + }, + { + "type": "node", + "id": 10567498630, + "lat": 44.8824705, + "lon": -0.5632317, + "tags": { + "access": "yes", + "addr": "Avenue des 40 Journaux Bordeaux 33300", + "addr:city": "Bordeaux", + "addr:country": "FR", + "addr:postcode": "33000", + "addr:street": "Avenue des 40 journaux", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "fee": "yes", + "name": "Bordeaux-Lac Supercharger", + "not:brand:wikidata": "Q478214", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "payment:app": "yes", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW" + } + }, + { + "type": "node", + "id": 10567498631, + "lat": 45.7220445, + "lon": 4.9237102, + "tags": { + "access": "yes", + "addr": "Auchan Lyon Porte des Alpes 1 Boulevard André Bouloche Saint-Priest 69800", + "addr:city": "Saint-Priest", + "addr:country": "FR", + "addr:postcode": "69800", + "addr:street": "1 boulevard André Bouloche", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "28", + "fee": "yes", + "name": "Bron Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "28", + "socket:tesla_supercharger_ccs:output": "250" + } + }, + { + "type": "node", + "id": 10567498632, + "lat": 45.8725246, + "lon": 6.6310492, + "tags": { + "access": "yes", + "addr": "Casino Supermarché Megève 271 Route de Sallanches 74120 Megève", + "addr:city": "Megève", + "addr:country": "FR", + "addr:postcode": "74120", + "addr:street": "271 Route de Sallanches", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "8", + "fee": "yes", + "name": "Megève Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "8", + "socket:tesla_supercharger_ccs:output": "250", + "website": "https://www.tesla.com/findus/location/supercharger/Megeveq222" + } + }, + { + "type": "node", + "id": 10567991612, + "lat": 44.0039182, + "lon": 4.703616, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "name": "IONITY Tavel Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10568099995, + "lat": 44.1713185, + "lon": 0.6096302, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Agen", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10568122949, + "lat": 44.2870295, + "lon": -0.2290292, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Aire du Cœur d'Aquitaine", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10568468714, + "lat": 47.3620275, + "lon": -1.956935, + "tags": { + "access": "yes", + "addr:city": "Savenay", + "addr:country": "FR", + "addr:housenumber": "14", + "addr:postcode": "44260", + "addr:street": "Allée des Troënes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Intermarché - La Chapelle-Launay", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "120 kW" + } + }, + { + "type": "node", + "id": 10568747816, + "lat": 45.1613397, + "lon": 1.4406882, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "8", + "fee": "yes", + "name": "Ionity Pays de Brive Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10568747817, + "lat": 45.1606146, + "lon": 1.4408836, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "8", + "fee": "yes", + "name": "IONITY Pays de Brive Sud", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10570281510, + "lat": 48.8756051, + "lon": 2.372727, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "operator": "Belib", + "survey:date": "2023-01-20" + } + }, + { + "type": "node", + "id": 10570926245, + "lat": 47.8706205, + "lon": -4.2246748, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2023-01-20" + } + }, + { + "type": "node", + "id": 10571091786, + "lat": 43.9852251, + "lon": 3.1829811, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Larzac", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10571127234, + "lat": 45.1698587, + "lon": -0.3347166, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Bedenac", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10571156945, + "lat": 45.1890232, + "lon": -0.4925032, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Saugon Ouest", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10571297763, + "lat": 46.0964869, + "lon": 5.9639655, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Valleiry Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10571373090, + "lat": 44.6370324, + "lon": -0.9602201, + "tags": { + "access": "customers", + "addr": "Aushopping Biganos 31 rue des Fonderies - Lieu dit Facture Biganos 33380", + "addr:city": "Biganos", + "addr:postcode": "33380", + "addr:street": "Aushopping", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "12", + "fee": "yes", + "name": "Biganos Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW" + } + }, + { + "type": "node", + "id": 10571447241, + "lat": 49.0716076, + "lon": 2.5528094, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "Fastned Aire de Vémars Est", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10571492910, + "lat": 49.0731793, + "lon": 2.5513715, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "Fastned Aire de Vémars Ouest", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10571500123, + "lat": 49.0719113, + "lon": 4.7889882, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Fastned Aire de Valmy Oberval", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10571503714, + "lat": 49.0737426, + "lon": 4.7905301, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Fastned Moulin", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10571516276, + "lat": 48.8560375, + "lon": 6.0889445, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "Fastned Aire de l'Obrion", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10572871873, + "lat": 50.2888491, + "lon": 2.749452, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Aldi", + "operator:wikidata": "Q125054" + } + }, + { + "type": "node", + "id": 10573118460, + "lat": 47.7391782, + "lon": -1.1743972, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "fee": "yes", + "fixme": "Emplacement à vérifier", + "motorcar": "yes", + "name": "Diva Sp - Ombrée-d'Anjou - Foire", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:type2": "4", + "socket:type2:output": "18 kW; 22 kVA", + "socket:typee": "4", + "socket:typee:output": "22 kW" + } + }, + { + "type": "node", + "id": 10573118463, + "lat": 47.7391096, + "lon": -1.1748082, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "fee": "yes", + "motorcar": "yes", + "name": "ePremium - Ombree d'Anjou - Foire", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Ouest Charge", + "owner": "SIEML", + "payment:cb": "yes", + "payment:contactless": "only", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "18 kW; 22 kVA", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10573149040, + "lat": 48.8360376, + "lon": 2.7997112, + "tags": { + "access": "yes", + "addr:city": "Bailly-Romainvilliers", + "addr:postcode": "77700", + "addr:street": "Avenue Johannes Gutenberg", + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "charging_station:output": "250 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Centre Tesla Paris-Val d’Europe Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "short_name": "Tesla", + "socket:tesla_supercharger": "16", + "socket:tesla_supercharger:output": "250 kW", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/CentreTeslaParisValdEurope422" + } + }, + { + "type": "node", + "id": 10574559726, + "lat": 45.9405528, + "lon": -0.5102599, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT-013339", + "ref:EU:EVSE": "FR*S17*PMB174512", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "survey; data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10574559727, + "lat": 45.9485955, + "lon": -0.5297228, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT-013340", + "ref:EU:EVSE": "FR*S17*PMB174613", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "survey; data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10574872381, + "lat": 50.5723252, + "lon": 2.379857, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Fastned Aire de Saint-Hilaire-Cottes", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10575013574, + "lat": -21.3403942, + "lon": 55.4912413, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "sunrise-sunset", + "operator": "Université de La Réunion", + "scooter": "yes", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 10575021189, + "lat": -21.3287067, + "lon": 55.4680046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "operator": "Freshmile", + "scooter": "yes", + "socket:type2": "2", + "truck": "yes" + } + }, + { + "type": "node", + "id": 10575268378, + "lat": 48.6951419, + "lon": 6.1837628, + "tags": { + "amenity": "charging_station", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10575268379, + "lat": 48.6951248, + "lon": 6.1837068, + "tags": { + "amenity": "charging_station", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10576036275, + "lat": 47.205893, + "lon": -0.4701749, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10577117248, + "lat": 47.6640636, + "lon": 1.3879809, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Ménars", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577117249, + "lat": 47.6640802, + "lon": 1.3879452, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Ménars", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577117250, + "lat": 47.6640947, + "lon": 1.3879063, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Ménars", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577117251, + "lat": 47.6641103, + "lon": 1.3878692, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Ménars", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577137953, + "lat": 47.665751, + "lon": 1.3877621, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Villerbon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577137954, + "lat": 47.6657268, + "lon": 1.3877382, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Villerbon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577137955, + "lat": 47.6656977, + "lon": 1.3877107, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Villerbon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577137956, + "lat": 47.6656712, + "lon": 1.387691, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Blois Villerbon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577285256, + "lat": 46.7012, + "lon": 0.3666962, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Jaunay-Clan", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577285257, + "lat": 46.7012733, + "lon": 0.3667136, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Jaunay-Clan", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577285258, + "lat": 46.7012752, + "lon": 0.3667364, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Jaunay-Clan", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577355883, + "lat": 46.701837, + "lon": 0.3710499, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Chincé", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577355884, + "lat": 46.7018116, + "lon": 0.3710679, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Chincé", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577355885, + "lat": 46.7017886, + "lon": 0.3710842, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Chincé", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577355886, + "lat": 46.7017682, + "lon": 0.3711014, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitiers Chincé", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577371728, + "lat": 46.2963013, + "lon": -0.3784963, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Poitou-Charentes", + "network": "Ionity", + "note": "Unknow exact location", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577403472, + "lat": 47.0944794, + "lon": 2.241178, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Bourges Sainte Thorette", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577403473, + "lat": 47.0945211, + "lon": 2.2411616, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Bourges Sainte Thorette", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10577403525, + "lat": 46.3785029, + "lon": 2.5870886, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Vérités", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577403526, + "lat": 46.3785022, + "lon": 2.587054, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Vérités", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577403527, + "lat": 46.3784996, + "lon": 2.5870202, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Vérités", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577403528, + "lat": 46.378497, + "lon": 2.5869865, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Vérités", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577413047, + "lat": 46.8506351, + "lon": 1.70523, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "5", + "name": "IONITY Chateauroux Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577448819, + "lat": 46.7517788, + "lon": 2.4172821, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Centre de la France", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577478345, + "lat": 46.7517049, + "lon": 2.4174383, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Centre de la France Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577484700, + "lat": 46.3785048, + "lon": 2.5871195, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Vérités", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10577526125, + "lat": 46.497358, + "lon": 3.362415, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "IONITY Aire du Bourbonnais", + "note": "position to be corrected", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577632649, + "lat": 47.5043773, + "lon": 4.0361205, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "name": "IONITY Maison Dieu", + "note": "Uknown exact location", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577651891, + "lat": 48.2254683, + "lon": 4.1331596, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "name": "IONITY Troyes Sud", + "note": "Need accurate position", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577656162, + "lat": 47.8135661, + "lon": 5.2243851, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Langres Noidant", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10577656163, + "lat": 47.8136166, + "lon": 5.224361, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Langres Noidant", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10577656164, + "lat": 47.8136301, + "lon": 5.2243878, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Langres Noidant", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10577656165, + "lat": 47.8136778, + "lon": 5.2243636, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Langres Noidant", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10577733146, + "lat": 48.231812, + "lon": 7.4028375, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10577733147, + "lat": 48.2318365, + "lon": 7.4027661, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10577733148, + "lat": 48.2318536, + "lon": 7.4027087, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10577733149, + "lat": 48.2318801, + "lon": 7.4026292, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10577733150, + "lat": 48.2318953, + "lon": 7.402577, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10577733151, + "lat": 48.2319183, + "lon": 7.4024938, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "IONITY Haut Koenigsbourg", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "parking:fee": "no", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10577756367, + "lat": 49.1201106, + "lon": 5.5077821, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "name": "IONITY Verdun Saint-Nicolas Nord", + "note": "Determine exact position", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577762345, + "lat": 49.2151448, + "lon": 6.1717427, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "18", + "fee": "yes", + "name": "IONITY Hauconcourt", + "network": "Ionity", + "note": "determine exact postion", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "18", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577778667, + "lat": 49.1185513, + "lon": 5.5097467, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "name": "IONITY Verdun Saint-Nicolas Sud", + "note": "Determine exact position", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10577793000, + "lat": 49.3662408, + "lon": 3.3078332, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "name": "IONITY Soissons Ouest", + "note": "Determine exact position", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578418853, + "lat": 49.0891679, + "lon": 2.5481804, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "12", + "fee": "yes", + "name": "IONITY Saint-Witz", + "network": "Ionity", + "note": "exact position to determine", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "12", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578454154, + "lat": 50.1673344, + "lon": 1.7556203, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "5", + "ref:EU:EVSE": "FR*ION*E407904", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 10578454155, + "lat": 50.1673157, + "lon": 1.7556488, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "6", + "ref:EU:EVSE": "FR*ION*E407904", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 10578454156, + "lat": 50.1674052, + "lon": 1.7555248, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "brand:wikipedia": "en:IONITY", + "capacity": "6", + "charge": "0,69€ / kWh", + "charging_station:output": "350 kW", + "covered": "no", + "description": "Aire de la Baie de Somme", + "fee": "yes", + "lit": "yes", + "location": "outdoor", + "manufacturer": "ABB", + "motorbike": "yes", + "motorcar": "yes", + "name": "Ionity Baie de Somme", + "network": "Ionity", + "network:wikidata": "Q42717773", + "network:wikipedia": "en:IONITY", + "opening_hours": "24/7", + "operator": "Ionity", + "operator:wikidata": "Q42717773", + "operator:wikipedia": "en:IONITY", + "owner": "Ionity", + "owner:wikidata": "Q42717773", + "owner:wikipedia": "en:IONITY", + "parking:fee": "no", + "payment:app": "yes", + "payment:rfid": "yes", + "phone": "+33187210891", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E407902", + "socket:type2_combo": "1", + "socket:type2_combo:current": "500", + "socket:type2_combo:output": "350 kW", + "socket:type2_combo:voltage": "920", + "start_date": "2019-28-03", + "website": "https://payment.ionity.eu/" + } + }, + { + "type": "node", + "id": 10578497238, + "lat": 50.9270575, + "lon": 1.7982665, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "name": "IONITY Coquelles", + "note": "exact posion to determine", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578547845, + "lat": 44.3611632, + "lon": 2.5647522, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "verifier par quel reseau on peut valider le paiement ou ,si prive", + "manufacturer:type": "Schneider Electric", + "model": "EVlink", + "motorcar": "yes", + "parking:fee": "no", + "payment:contactless": "yes", + "ref": "EVP2PE2244R", + "socket:type2": "2", + "socket:type2:current": "32A", + "socket:type2:output": "22kW", + "socket:type2:voltage": "415", + "source": "survey 2022" + } + }, + { + "type": "node", + "id": 10578547846, + "lat": 44.3612131, + "lon": 2.5647641, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "fixme": "verifier par quel reseau on peut valider le paiement ou ,si prive", + "manufacturer:type": "Schneider Electric", + "model": "EVlink", + "motorcar": "yes", + "parking:fee": "no", + "payment:contactless": "yes", + "ref": "EVP2PE2244R", + "socket:type2": "2", + "socket:type2:current": "32A", + "socket:type2:output": "22kW", + "socket:type2:voltage": "415", + "source": "survey 2022" + } + }, + { + "type": "node", + "id": 10578593084, + "lat": 49.1667361, + "lon": -0.2767992, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Giberville Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578593085, + "lat": 49.1667342, + "lon": -0.2768336, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Giberville Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578593086, + "lat": 49.1667328, + "lon": -0.276867, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Giberville Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578593087, + "lat": 49.1667236, + "lon": -0.2769711, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Giberville Sud", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10578620665, + "lat": 49.1678851, + "lon": -0.2739065, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Giberville Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578620666, + "lat": 49.1678851, + "lon": -0.2739385, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Giberville Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578620667, + "lat": 49.1678828, + "lon": -0.2739723, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Giberville Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578620668, + "lat": 49.1678874, + "lon": -0.2738389, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Giberville Nord", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10578629975, + "lat": 48.9088975, + "lon": -1.1030454, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Vallée de la vire Gouvets", + "note": "aproximative position", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578629976, + "lat": 48.908907, + "lon": -1.1030287, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Vallée de la vire Gouvets", + "note": "aproximative position", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578629977, + "lat": 48.9089165, + "lon": -1.1030127, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Vallée de la vire Gouvets", + "note": "aproximative position", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578629978, + "lat": 48.9089236, + "lon": -1.1029982, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2022-07 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Vallée de la vire Gouvets", + "note": "aproximative position", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578629979, + "lat": 48.9088875, + "lon": -1.1030599, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "fixme": "2023-01 : position approximative en attendant la mise à jour de l'imagerie aérienne ou cadastre", + "name": "IONITY Vallée de la vire Gouvets", + "note": "aproximative position", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10578681460, + "lat": 48.2739842, + "lon": -2.1875492, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Kergoët", + "network": "Ionity", + "note": "Accurate position need after update of maps", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge;Maxar" + } + }, + { + "type": "node", + "id": 10578681461, + "lat": 48.273994, + "lon": -2.1875143, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Kergoët", + "network": "Ionity", + "note": "Accurate position need after update of maps", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge;Maxar" + } + }, + { + "type": "node", + "id": 10578681462, + "lat": 48.2740056, + "lon": -2.1874754, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Kergoët", + "network": "Ionity", + "note": "Accurate position need after update of maps", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "knowledge;Maxar" + } + }, + { + "type": "node", + "id": 10578698369, + "lat": 48.0952569, + "lon": -0.6936875, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Mayenne", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:credit_cards": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo:output": "50 kW", + "website": "https://payment.ionity.eu/charger-detail/4168" + } + }, + { + "type": "node", + "id": 10578698371, + "lat": 48.0953056, + "lon": -0.6936515, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "IONITY Mayenne", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:credit_cards": "yes", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW", + "website": "https://payment.ionity.eu/charger-detail/4168" + } + }, + { + "type": "node", + "id": 10578867955, + "lat": 48.5659364, + "lon": 1.986071, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "8", + "fee": "yes", + "name": "Ionity Longvilliers", + "network": "Ionity", + "note": "Accurate position neededPosition", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578883753, + "lat": 48.125482, + "lon": 0.6221591, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Villaines la Gonais", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578883754, + "lat": 48.1254899, + "lon": 0.6221995, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Villaines la Gonais", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578883755, + "lat": 48.1254988, + "lon": 0.6222419, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Villaines la Gonais", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578883756, + "lat": 48.1255139, + "lon": 0.6223213, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Villaines la Gonais", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10578896077, + "lat": 47.8070417, + "lon": -0.1671222, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10578911601, + "lat": 48.1265995, + "lon": 0.6233562, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY La Ferté Bernard", + "note": "accurate position need", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578911602, + "lat": 48.1265849, + "lon": 0.6233562, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY La Ferté Bernard", + "note": "accurate position need", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578911603, + "lat": 48.1265697, + "lon": 0.623357, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY La Ferté Bernard", + "note": "accurate position need", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578911604, + "lat": 48.1265562, + "lon": 0.6233588, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY La Ferté Bernard", + "note": "accurate position need", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578929775, + "lat": 47.8033928, + "lon": -0.168223, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Est", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10578929776, + "lat": 47.8034201, + "lon": -0.1681974, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Est", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10578929777, + "lat": 47.803442, + "lon": -0.1681729, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Est", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10578929778, + "lat": 47.8034647, + "lon": -0.1681473, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Est", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10578929779, + "lat": 47.8034858, + "lon": -0.1681206, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "name": "Parcé sur Sarthe Est", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "owner": "Ionity", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10578939959, + "lat": 47.4185107, + "lon": -0.1316664, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Longué-les-Cossonnières", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578939960, + "lat": 47.4184905, + "lon": -0.1316278, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Longué-les-Cossonnières", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578939961, + "lat": 47.4184739, + "lon": -0.1315857, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Longué-les-Cossonnières", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578939962, + "lat": 47.4184567, + "lon": -0.131555, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Longué-les-Cossonnières", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578939963, + "lat": 47.4184009, + "lon": -0.1314471, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "Longué-les-Cossonnières", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10578954571, + "lat": 47.4192517, + "lon": -0.134574, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Longué la Couaille", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578954572, + "lat": 47.4192681, + "lon": -0.1346115, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Longué la Couaille", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578954573, + "lat": 47.4192853, + "lon": -0.1346464, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Longué la Couaille", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578954574, + "lat": 47.4193026, + "lon": -0.1346786, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "IONITY Longué la Couaille", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10578954575, + "lat": 47.4193543, + "lon": -0.1347872, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "2", + "fee": "yes", + "name": "IONITY Longué la Couaille", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10579346940, + "lat": 46.5180723, + "lon": 4.5975966, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10579367725, + "lat": 43.9230545, + "lon": 4.9119626, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "name": "IONITY Morières", + "note": "accurate position needed", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10579757696, + "lat": 43.6363002, + "lon": -0.6147562, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Enerstock", + "capacity": "10", + "description": "Libre service, Badge RFID, QR code ou application de paiement direct la borne Amedio délivre jusqu’à 22kWh par point de charge.", + "fee": "yes", + "operator": "Mennekes", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10581704462, + "lat": 45.7796707, + "lon": 4.8657706, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10583830413, + "lat": 48.6124076, + "lon": 7.7663268, + "tags": { + "amenity": "charging_station", + "amperage": "125", + "brand": "Hypercharger", + "capacity": "2", + "manufacturer": "Alpitronic", + "model": "HYC_150", + "serial_number": "21BZ0874A", + "socket:chademo": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "start_date": "2021", + "voltage": "400" + } + }, + { + "type": "node", + "id": 10584630309, + "lat": 43.594614, + "lon": 1.5626503, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10587499595, + "lat": 42.70145, + "lon": 2.9448067, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "kick_scooter": "yes", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10588240244, + "lat": 47.0787696, + "lon": -0.8344715, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10588779492, + "lat": 44.5595162, + "lon": 4.7457452, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10589493440, + "lat": 48.8936491, + "lon": 1.8736946, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "Freshmile", + "payment:credit_cards": "yes", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10589636870, + "lat": 45.7721912, + "lon": 4.8529691, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Montgolfier", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY607D;MAT-009040", + "ref:EU:EVSE": "FR*GLY*PLYON10314", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10589857830, + "lat": 48.3031202, + "lon": 5.8342948, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Modulo", + "capacity": "2", + "charge": "3€/h", + "covered": "no", + "description": "Bornes de recharge 2 places\n- Type 2 : 22 KW\n- Combo CCS EU : 25 KW\n- Chademo : 22 KW", + "fee": "yes", + "operator": "Modulo Energies", + "payment:app": "yes", + "website": "modulo-energies.fr" + } + }, + { + "type": "node", + "id": 10590061773, + "lat": 44.880934, + "lon": -0.6290995, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Eysines", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fOGFlMTUwN2MtNGJhYS0xMWVkLWE1YTgtMzM5NWU4ZDUxY2Jl" + } + }, + { + "type": "node", + "id": 10590091165, + "lat": 44.1188798, + "lon": 4.8386037, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Peugeot Orange", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fOTdjYTc0Y2MtM2Y1MS0xMWVkLTg1MWUtNGY5Y2ViODU2ZTM0" + } + }, + { + "type": "node", + "id": 10590100863, + "lat": 45.5850269, + "lon": 4.7899685, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Chasse-sur-Rhône", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fZTJjMGVjYTAtNGJiNy0xMWVkLWI0NzUtYWZkZTg3ZGFhMWFk" + } + }, + { + "type": "node", + "id": 10590267652, + "lat": 45.7146016, + "lon": 4.854448, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Mercedes-Benz Lyon, Saint-Fons", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "225 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNTY0N2Y2ZjAtMTRjYy0xMWVkLWI0MzEtMWIxNmUzOTM1NTAz" + } + }, + { + "type": "node", + "id": 10590297317, + "lat": 45.6882883, + "lon": 5.0635476, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Saint-Laurent-de-Mure", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNDY2NjhmMjYtNGJhOS0xMWVkLWI4ZDQtNmYyOWUzZDBjNTU0" + } + }, + { + "type": "node", + "id": 10590337000, + "lat": 45.6739495, + "lon": 5.9299011, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity Aire de Mouxy", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10590376533, + "lat": 45.6119999, + "lon": 5.2129767, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity l'Isle-d'Abeau", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10591479855, + "lat": 48.8731138, + "lon": 2.3904712, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10591950838, + "lat": 50.13415, + "lon": 3.75963, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Pays de Mormal", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H16*P59384001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10592093789, + "lat": 50.4474295, + "lon": 2.646251, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Béthune Bruay Artois", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H13*P62543001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10594499761, + "lat": 47.285985, + "lon": 1.3730698, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10595668061, + "lat": 50.7845329, + "lon": 1.9320192, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Pays d'Opale", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H11*P62506001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10596741777, + "lat": 44.7514742, + "lon": -1.1876502, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10597171103, + "lat": 46.0597514, + "lon": 3.4609999, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "source": "survey", + "survey:date": "2023-01-29" + } + }, + { + "type": "node", + "id": 10597200241, + "lat": 49.35987, + "lon": 1.356333, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE107", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PFLEURYANDREPUBLIQUE", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10597326245, + "lat": 43.111386, + "lon": 5.8402036, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10599680963, + "lat": 43.2648211, + "lon": 5.4084592, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "2", + "contact:email": "support@evzen.com", + "description": "2x 22kW+3kW CB", + "fee": "yes", + "hgv": "no", + "motorcar": "yes", + "name": "Engie", + "network": "Engie", + "opening_hours": "24/7", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "yes", + "payment:cash": "no", + "payment:membership_card": "no", + "phone": "+33969390903", + "scooter": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10601843195, + "lat": 48.5969225, + "lon": -2.2911463, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Brev'Car", + "operator": "SDE22", + "payment:contactless": "only", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:typee": "2", + "socket:typee:output": "3kW", + "source": "survey 2022" + } + }, + { + "type": "node", + "id": 10601920017, + "lat": 49.5034247, + "lon": 0.1218901, + "tags": { + "amenity": "charging_station", + "brand": "Shell", + "operator": "Shell", + "operator:wikidata": "Q110716465" + } + }, + { + "type": "node", + "id": 10601920018, + "lat": 49.503378, + "lon": 0.1217129, + "tags": { + "amenity": "charging_station", + "brand": "Shell", + "operator": "Shell", + "operator:wikidata": "Q110716465" + } + }, + { + "type": "node", + "id": 10605315400, + "lat": 45.9836008, + "lon": 0.8970722, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33 9 72 66 80 01", + "ref:EU:EVSE": "FR*S16*PMB162911", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10605776428, + "lat": 45.83578, + "lon": 6.5667901, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "contact:phone": "+33423100350", + "contact:website": "www.eborn.fr", + "network": "eborn" + } + }, + { + "type": "node", + "id": 10606120375, + "lat": 47.9449791, + "lon": 1.9186406, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10606120376, + "lat": 47.9449335, + "lon": 1.9186238, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10606120377, + "lat": 47.944886, + "lon": 1.9186045, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10606388073, + "lat": 50.1340834, + "lon": 4.8252103, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "fee": "no" + } + }, + { + "type": "node", + "id": 10608705332, + "lat": 43.6273626, + "lon": 1.4323036, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10613863401, + "lat": 48.9813735, + "lon": 1.6508081, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10614840577, + "lat": 50.7635882, + "lon": 2.7180284, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10616753872, + "lat": 48.6144556, + "lon": 6.0983264, + "tags": { + "amenity": "charging_station", + "source": "survey" + } + }, + { + "type": "node", + "id": 10617793944, + "lat": 45.0486035, + "lon": 3.8763109, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10621044560, + "lat": 46.6751131, + "lon": 5.5346002, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10621927289, + "lat": 48.5756454, + "lon": 7.7561755, + "tags": { + "amenity": "charging_station", + "contact:website": "https://www.freshmile.com/", + "fee": "yes", + "operator": "Freshmile", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "source": "https://www.freshmile.com/" + } + }, + { + "type": "node", + "id": 10624454965, + "lat": 50.673799, + "lon": 2.485248, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat intercommunal d'énergie de Flandre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H14*P59578001", + "socket:type2": "5", + "socket:typee": "5", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10624469833, + "lat": 50.6352616, + "lon": 2.3213853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Pays de Saint Omer", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H01*P62543001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10630994267, + "lat": 48.6777138, + "lon": 2.1991228, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10630994269, + "lat": 48.6775285, + "lon": 2.1993169, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10635298172, + "lat": 16.2521881, + "lon": -61.5892111, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10635303249, + "lat": 16.252205, + "lon": -61.589239, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10647442231, + "lat": 43.6167933, + "lon": 6.2198963, + "tags": { + "amenity": "charging_station", + "capacity:charging": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 10648038148, + "lat": 42.7026175, + "lon": 2.896285, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "brand": "Circontrol", + "fee": "no", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Virta", + "opening_hours": "24/7", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type2_cable": "2", + "socket:type2_cable:output": "22" + } + }, + { + "type": "node", + "id": 10648056713, + "lat": 42.7026089, + "lon": 2.896243, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "brand": "Circontrol", + "fee": "no", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "24/7", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:type2_cable": "2", + "socket:type2_cable:output": "22" + } + }, + { + "type": "node", + "id": 10648702574, + "lat": 49.158001, + "lon": 1.605735, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE134", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PECOSSALLESPORTS", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10649448623, + "lat": 48.7906198, + "lon": 2.3611992, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10649448624, + "lat": 48.7905671, + "lon": 2.3612116, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10649448625, + "lat": 48.790361, + "lon": 2.3612562, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10649448626, + "lat": 48.790412, + "lon": 2.3612462, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10649448627, + "lat": 48.7905151, + "lon": 2.3612237, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "wheelchair": "no" + } + }, + { + "type": "node", + "id": 10652329840, + "lat": 49.7609867, + "lon": 0.3659888, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "8", + "email": "web@freshmile.com", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Hôtel du Grand Pavois", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PQOS8EYYCTL", + "socket:type2": "8", + "socket:typee": "8", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10652762314, + "lat": 47.5585861, + "lon": 7.5341545, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10653208408, + "lat": 48.0888518, + "lon": -1.6203343, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10655101075, + "lat": 48.5845516, + "lon": 2.6040481, + "tags": { + "access": "customers", + "addr:city": "Cesson", + "addr:country": "FR", + "addr:postcode": "77240", + "addr:street": "RD 306", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "12", + "fee": "yes", + "name": "Cesson Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "operator:wikipedia": "en:Tesla, Inc.", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/Cessonq222" + } + }, + { + "type": "node", + "id": 10655132247, + "lat": 48.9100105, + "lon": 6.0556233, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10655132248, + "lat": 48.9100004, + "lon": 6.055565, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10655132249, + "lat": 48.9100189, + "lon": 6.0556642, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10655132250, + "lat": 48.9090995, + "lon": 6.0543358, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes", + "source": "Ortho HR" + } + }, + { + "type": "node", + "id": 10655132251, + "lat": 48.9017124, + "lon": 6.0632797, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10655132252, + "lat": 48.9036157, + "lon": 6.0558429, + "tags": { + "amenity": "charging_station", + "brand": "TechnoCity", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 10655232062, + "lat": 45.5958262, + "lon": 5.2398777, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Powerdot", + "capacity": "2", + "email": "hello@powerdot.fr", + "fee": "yes", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "owner:ref:FR:SIREN": "891118473", + "payment:credit_cards": "yes", + "phone": "+33 1 76 31 06 84", + "ref:EU:EVSE": "FR*PD1*PKFCBJL", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "250 kW", + "source": "https://www.data.gouv.fr/fr/datasets/fichier-consolide-des-bornes-de-recharge-pour-vehicules-electriques/", + "source:date": "2023-01-30" + } + }, + { + "type": "node", + "id": 10659655905, + "lat": 48.883225, + "lon": 2.2327925, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Sigeif", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE23412", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659662205, + "lat": 48.9049911, + "lon": 2.2558079, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO461", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659662405, + "lat": 48.9049612, + "lon": 2.2558186, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO471", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659663805, + "lat": 48.9049389, + "lon": 2.2558214, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO431", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659663806, + "lat": 48.9048627, + "lon": 2.2558309, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO441", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659663905, + "lat": 48.9049109, + "lon": 2.2558281, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO411", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659663906, + "lat": 48.9048892, + "lon": 2.2558269, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO421", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659663907, + "lat": 48.9048335, + "lon": 2.2558327, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "GARENNE", + "operator": "Izivia", + "owner": "GARENNE", + "ref:EU:EVSE": "FR*LGC*PGACO451", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10659809637, + "lat": 48.8571805, + "lon": 2.3277382, + "tags": { + "amenity": "charging_station", + "brand": "Belib'" + } + }, + { + "type": "node", + "id": 10660984856, + "lat": 44.3608811, + "lon": 4.69542, + "tags": { + "amenity": "charging_station", + "operator": "ALDI", + "operator:wikidata": "Q125054" + } + }, + { + "type": "node", + "id": 10660984857, + "lat": 44.3608711, + "lon": 4.6954582, + "tags": { + "amenity": "charging_station", + "operator": "ALDI", + "operator:wikidata": "Q125054" + } + }, + { + "type": "node", + "id": 10666220584, + "lat": 45.894934, + "lon": 0.7830853, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S16*PMB161711", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10666220591, + "lat": 45.894931, + "lon": 0.7830854, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S16*PMB161712", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10669431007, + "lat": 43.5372028, + "lon": 6.4625652, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10669591141, + "lat": 4.9095908, + "lon": -52.2728688, + "tags": { + "amenity": "charging_station", + "operator": "EZDrive" + } + }, + { + "type": "node", + "id": 10672609624, + "lat": 48.7221273, + "lon": 2.4702448, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Smoys" + } + }, + { + "type": "node", + "id": 10672999508, + "lat": 48.8302135, + "lon": 6.0676075, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10674037505, + "lat": 43.4935967, + "lon": -1.4756046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2023-02-17" + } + }, + { + "type": "node", + "id": 10674037605, + "lat": 43.4936495, + "lon": -1.4755345, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2023-02-17" + } + }, + { + "type": "node", + "id": 10674046295, + "lat": 48.8300153, + "lon": 6.0670791, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10676503369, + "lat": 48.0820708, + "lon": -0.7895909, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Espace Mayenne", + "network": "TEM53", + "opening_hours": "24/7", + "owner": "TE 53", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2", + "voltage": "18" + } + }, + { + "type": "node", + "id": 10676503370, + "lat": 48.082075, + "lon": -0.7894715, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Espace Mayenne", + "network": "TEM53", + "opening_hours": "24/7", + "owner": "TE 53", + "parking:fee": "no", + "socket:type2": "2", + "socket:typee": "2", + "voltage": "18" + } + }, + { + "type": "node", + "id": 10677750981, + "lat": 47.6268498, + "lon": 4.3394245, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10678608905, + "lat": 48.8872904, + "lon": 2.2323269, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE14461", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10678608906, + "lat": 48.8872091, + "lon": 2.2321055, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE14441", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10678609305, + "lat": 48.8872604, + "lon": 2.2322445, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE14451", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10678609505, + "lat": 48.8872293, + "lon": 2.2321778, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE14431", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10679996441, + "lat": 49.414062, + "lon": 0.266338, + "tags": { + "access": "yes", + "addr:city": "Honfleur", + "addr:country": "FR", + "addr:postcode": "14600", + "addr:street": "Avenue de Normandie", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "12", + "fee": "yes", + "name": "Honfleur Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/yvetotsupercharger" + } + }, + { + "type": "node", + "id": 10680150680, + "lat": 43.9204934, + "lon": 4.8680337, + "tags": { + "access": "yes", + "addr:city": "Avignon", + "addr:country": "FR", + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "Power Dot - Avignon", + "opening_hours": "24/7", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "3", + "socket:type2:output": "22 kW", + "socket:type2_combo": "5", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10680150681, + "lat": 44.1128909, + "lon": 4.0959316, + "tags": { + "access": "yes", + "addr:city": "Alès", + "addr:country": "FR", + "addr:housenumber": "871", + "addr:postcode": "30100", + "addr:street": "Quai du Mas d'Hours", + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "Power Dot - Alès", + "opening_hours": "24/7", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10680150682, + "lat": 44.1815038, + "lon": 0.6189492, + "tags": { + "access": "yes", + "addr:city": "Agen", + "addr:country": "FR", + "addr:postcode": "47000", + "addr:street": "Avenue de l'Atlantique", + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "Power Dot - Agen", + "opening_hours": "24/7", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10680150683, + "lat": 49.259879, + "lon": 6.1759418, + "tags": { + "access": "yes", + "addr:city": "Mondelange", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:street": "Rue de Bousse", + "amenity": "charging_station", + "capacity": "11", + "fee": "yes", + "name": "Power Dot - Mondelange", + "opening_hours": "24/7", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "6", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10680290659, + "lat": 49.5799166, + "lon": 0.4744184, + "tags": { + "addr:city": "Bolbec", + "addr:country": "FR", + "addr:housenumber": "54", + "addr:postcode": "76210", + "addr:street": "Avenue Louis Debray", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "email": "hello@powerdot.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Power Dot - Bolbec", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "payment:credit_cards": "no", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*PD1*PITMBBC", + "socket:chademo": "2", + "socket:chademo:output": "60 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "60 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10680290660, + "lat": 49.4134044, + "lon": 2.1163613, + "tags": { + "addr:city": "Beauvais", + "addr:country": "FR", + "addr:housenumber": "31", + "addr:postcode": "60000", + "addr:street": "Rue Arago", + "amenity": "charging_station", + "capacity": "2", + "name": "Power Dot - Beauvais", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10680290661, + "lat": 47.9263567, + "lon": -3.7045611, + "tags": { + "access": "yes", + "addr:city": "Bannalec", + "addr:country": "FR", + "addr:postcode": "29380", + "addr:street": "Rue Eugène Lorec", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "name": "Power Dot - Bannalec", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "80 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "80 kW" + } + }, + { + "type": "node", + "id": 10680560746, + "lat": 48.3744161, + "lon": 0.5646806, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10680620549, + "lat": 48.3910128, + "lon": 0.4457719, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10680653674, + "lat": 48.3752639, + "lon": 0.5257057, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10680654991, + "lat": 48.3767706, + "lon": 0.5556688, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Te61", + "operator": "Syndicat de l'Énergie de l'Orne (TE61) | FR*S61", + "owner": "Syndicat de l'Énergie de l'Orne (TE61)", + "ref:EU:EVSE": "FR*S61*P61001A", + "socket:type2": "1", + "socket:type3c": "1", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10680752944, + "lat": 51.0151861, + "lon": 2.379057, + "tags": { + "access": "yes", + "addr:city": "Coudekerque-Branche", + "addr:country": "FR", + "addr:housenumber": "90", + "addr:postcode": "59210", + "addr:street": "Rue des Forts", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Cora - Dunkerque", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "12 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10680752945, + "lat": 49.6361547, + "lon": -1.6195178, + "tags": { + "access": "yes", + "addr:city": "Cherbourg-en-Cotentin", + "addr:country": "FR", + "addr:housenumber": "27", + "addr:postcode": "50100", + "addr:street": "Quai de l'Entrepot", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - CC Les Elis - Cherbourg", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "3", + "socket:type2:output": "12 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10680752946, + "lat": 48.9785006, + "lon": 4.3566048, + "tags": { + "access": "yes", + "addr:city": "Châlons en Champagne", + "addr:country": "FR", + "addr:postcode": "51000", + "addr:street": "Le Mont Héry", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Bricomarché - Châlons en Champagne", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "60 kW", + "socket:type2": "2", + "socket:type2:output": "43 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "60 kW" + } + }, + { + "type": "node", + "id": 10680752947, + "lat": 49.0314302, + "lon": 2.0689367, + "tags": { + "access": "yes", + "addr:city": "Cergy", + "addr:country": "FR", + "addr:housenumber": "28", + "addr:postcode": "95000", + "addr:street": "Avenue des grouettes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Ibis Cergy le Port", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "120 kW" + } + }, + { + "type": "node", + "id": 10680752948, + "lat": 47.3412819, + "lon": -0.4308701, + "tags": { + "access": "yes", + "addr:city": "Brissac-Loire-Aubance", + "addr:country": "FR", + "addr:housenumber": "6", + "addr:postcode": "49320", + "addr:street": "Allée des oiseaux", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - Leclerc - Brissac Quincé", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2": "4", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "60 kW" + } + }, + { + "type": "node", + "id": 10680752949, + "lat": 48.6824609, + "lon": 2.53546, + "tags": { + "access": "yes", + "addr:city": "Boussy-Saint-Antoine", + "addr:country": "FR", + "addr:postcode": "91800", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - CC Val d'Yerres 2 - Boussy-Saint-Antoine", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10680976572, + "lat": 48.4428015, + "lon": 2.1430126, + "tags": { + "access": "yes", + "addr:city": "Etampes", + "addr:country": "FR", + "addr:postcode": "91150", + "addr:street": "Rue des Epinants", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Norauto - Etampes", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2:output": "12 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10680976573, + "lat": 48.988073, + "lon": 2.2465552, + "tags": { + "access": "yes", + "addr:city": "Ermont", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "95120", + "addr:street": "Avenue Georges Pompidou", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Power Dot - Cora - Ermont", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "12 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10680976574, + "lat": 48.9568088, + "lon": 1.8315956, + "tags": { + "access": "yes", + "addr:city": "Epône", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "78680", + "addr:street": "Rue Fernand Léger", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "name": "Power Dot - Epône", + "operator": "Power dot", + "payment:credit_cards": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10680976575, + "lat": 43.6488975, + "lon": 1.3367647, + "tags": { + "access": "yes", + "addr:all": "Avenue Émile Dewoitine 31700 Cornebarrieu", + "amenity": "charging_station", + "capacity": "2", + "description": "Power Dot - Intermarché - Cornebarrieu", + "fee": "yes", + "name": "Power Dot", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "84 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "250 kW" + } + }, + { + "type": "node", + "id": 10681099541, + "lat": 50.7375076, + "lon": 2.5495791, + "tags": { + "access": "yes", + "addr:city": "Hazebrouck", + "addr:country": "FR", + "addr:postcode": "59190", + "addr:street": "Parc d'Activité de la Creule", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - Parc d'Activité de la Creule - Hazebrouck", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:type2": "2", + "socket:type2:output": "12 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10681099542, + "lat": 43.7140071, + "lon": 1.4183682, + "tags": { + "access": "yes", + "addr:city": "Gratentour", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "31150", + "addr:street": "Rue de la Gravette", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Power Dot - Intermarché - Gratentour", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "56 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "135 kW" + } + }, + { + "type": "node", + "id": 10681099543, + "lat": 49.8189499, + "lon": 3.2958153, + "tags": { + "access": "yes", + "addr:city": "Gauchy", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "02430", + "addr:street": "Rue Eugène Freyssinet", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "email": "hello@powerdot.fr", + "fee": "yes", + "motorcar": "yes", + "name": "Power Dot - Gauchy", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "payment:credit_cards": "no", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*PD1*PBOUGAU", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2": "2", + "socket:type2:output": "12 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "120 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10681099544, + "lat": 43.8306571, + "lon": 1.3923883, + "tags": { + "access": "yes", + "addr:city": "Fronton", + "addr:country": "FR", + "addr:housenumber": "800", + "addr:postcode": "31620", + "addr:street": "Route de Toulouse", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "name": "Power Dot - Intermarché - Fronton", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2_combo": "5", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10681099545, + "lat": 49.1743988, + "lon": 6.8829292, + "tags": { + "access": "yes", + "addr:city": "Forbach", + "addr:country": "FR", + "addr:housenumber": "59", + "addr:postcode": "57600", + "addr:street": "Avenue de l'Europe", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - Cora - Forbach", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "100 kW", + "socket:type2": "2", + "socket:type2:output": "12 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "250 kW" + } + }, + { + "type": "node", + "id": 10681099546, + "lat": 49.0273027, + "lon": 1.1804402, + "tags": { + "access": "yes", + "addr:city": "Evreux", + "addr:country": "FR", + "addr:housenumber": "782", + "addr:postcode": "27000", + "addr:street": "Rue Jacques Monod", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - Intermarché - Evreux Netreville", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "12 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "250 kW" + } + }, + { + "type": "node", + "id": 10681173617, + "lat": 47.7600494, + "lon": -3.1198396, + "tags": { + "access": "yes", + "addr:city": "Landévant", + "addr:country": "FR", + "addr:postcode": "56690", + "addr:street": "Lôtissement les Champs Fleuris", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Intermarché - Landevant", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10681173618, + "lat": 49.3131001, + "lon": -1.0983592, + "tags": { + "access": "yes", + "addr:city": "Isigny-sur-mer", + "addr:country": "FR", + "addr:housenumber": "21", + "addr:postcode": "14230", + "addr:street": "Rue de Littry", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - Intermarché - Isigny sur Mer", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "5", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10681756434, + "lat": 46.7732911, + "lon": -0.8509192, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10681939606, + "lat": 46.0385262, + "lon": 4.0574509, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10681960632, + "lat": 47.047262, + "lon": 6.4785084, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10682505322, + "lat": 46.6665974, + "lon": -1.3370168, + "tags": { + "access": "yes", + "addr:city": "La Chaize-le-Vicomte", + "addr:country": "FR", + "addr:housenumber": "12", + "addr:postcode": "85310", + "addr:street": "Rue André Ampère", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - La Roche sur Yon", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "120 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "120 kW" + } + }, + { + "type": "node", + "id": 10682917707, + "lat": 43.9255687, + "lon": 5.0205766, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10682961770, + "lat": 46.6027924, + "lon": -1.6524983, + "tags": { + "access": "yes", + "addr:city": "Les Achards", + "addr:country": "FR", + "addr:housenumber": "4bis", + "addr:postcode": "85150", + "addr:street": "Rue Michel Breton", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Brit Hotels - Les Achards", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "12 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10682961771, + "lat": 45.7786956, + "lon": 3.1967828, + "tags": { + "access": "yes", + "addr:city": "Lempdes", + "addr:country": "FR", + "addr:housenumber": "26", + "addr:street": "Avenue de l'Europe", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - Cora - Lempdes", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2": "3", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "250 kW" + } + }, + { + "type": "node", + "id": 10682961772, + "lat": 49.5097793, + "lon": 0.1571724, + "tags": { + "access": "yes", + "addr:city": "Le Havre", + "addr:country": "FR", + "addr:housenumber": "45", + "addr:postcode": "76610", + "addr:street": "Avenue Paul Verlaine", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Intermarché - Le Havre", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10683165885, + "lat": 50.675552, + "lon": 3.1169334, + "tags": { + "access": "yes", + "addr:city": "Marcq-en-Baroeul", + "addr:country": "FR", + "addr:housenumber": "340", + "addr:postcode": "59700", + "addr:street": "Avenue de la Marne", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "name": "Power Dot - Ibis Styles - Marcq-en-Baroeul", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10683165886, + "lat": 50.6795412, + "lon": 3.1105122, + "tags": { + "access": "yes", + "addr:city": "Marcq-en-Baroeul", + "addr:country": "FR", + "addr:housenumber": "157", + "addr:postcode": "59700", + "addr:street": "Avenue de la Marne", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Power Dot - Hotel Mercure - Marcq en Baroeul", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "5", + "socket:type2:output": "12 kW", + "socket:type2_combo": "6", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10683165887, + "lat": 46.2814343, + "lon": 4.8047164, + "tags": { + "access": "yes", + "addr:city": "Mâcon", + "addr:country": "FR", + "addr:housenumber": "509", + "addr:postcode": "71000", + "addr:street": "Rue Jacquard", + "amenity": "charging_station", + "fee": "yes", + "name": "Power Dot - Ibis Budget - Mâcon", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "100 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10683165888, + "lat": 47.7468879, + "lon": -3.388094, + "tags": { + "access": "yes", + "addr:city": "Lorient", + "addr:country": "FR", + "addr:housenumber": "73", + "addr:postcode": "56100", + "addr:street": "Rue de Lanveur", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Intermarché - Lorient", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "60 kW" + } + }, + { + "type": "node", + "id": 10683165889, + "lat": 45.2457409, + "lon": 1.7732446, + "tags": { + "access": "yes", + "addr:city": "Laguenne", + "addr:country": "FR", + "addr:postcode": "19150", + "addr:street": "Avenue de Coulaud", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Super U - Laguenne-sur-Avalouze", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2": "3", + "socket:type2:output": "12 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "60 kW" + } + }, + { + "type": "node", + "id": 10683669189, + "lat": 48.7254041, + "lon": 2.277807, + "tags": { + "access": "yes", + "addr:city": "Massy", + "addr:country": "FR", + "addr:postcode": "91300", + "addr:street": "Centre commercial Cora", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Power Dot - Cora - Massy", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 10683669190, + "lat": 43.28994, + "lon": 5.4888806, + "tags": { + "access": "yes", + "addr:city": "Marseille", + "addr:country": "FR", + "addr:housenumber": "50", + "addr:postcode": "13011", + "addr:street": "Montée Commandant de Robien", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "name": "Power Dot - Électro-Dépot - Marseille", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2": "1", + "socket:type2:output": "12 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "100 kW" + } + }, + { + "type": "node", + "id": 10683669191, + "lat": 47.9879129, + "lon": -0.1628289, + "tags": { + "access": "yes", + "addr:city": "Mareil-en-Champagne", + "addr:country": "FR", + "addr:housenumber": "1", + "addr:postcode": "72540", + "addr:street": "La Grange", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Power Dot - Super U - Mareil-en-Champagne", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "60 kW", + "socket:type2": "2", + "socket:type2:output": "12 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "60 kW" + } + }, + { + "type": "node", + "id": 10683749094, + "lat": 44.5257872, + "lon": 4.7445649, + "tags": { + "access": "yes", + "addr:city": "Montélimar", + "addr:country": "FR", + "addr:housenumber": "2", + "addr:postcode": "26200", + "addr:street": "Boulevard Charles André", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "name": "Power Dot - KFC - Montélimar", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "250 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "250 kW" + } + }, + { + "type": "node", + "id": 10684063667, + "lat": 46.7781507, + "lon": -0.8415705, + "tags": { + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "capacity": "2", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149" + } + }, + { + "type": "node", + "id": 10684349738, + "lat": 48.6365905, + "lon": 2.2703986, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "izivia" + } + }, + { + "type": "node", + "id": 10684582371, + "lat": 48.8042035, + "lon": 2.2884976, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "SIGEIF", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "SIGEIF", + "ref:EU:EVSE": "FR*SIG*PSIGE*37", + "socket:type2": "11", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 01/2020" + } + }, + { + "type": "node", + "id": 10685726949, + "lat": 44.7791681, + "lon": 3.3840825, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10687599078, + "lat": 45.6127987, + "lon": 5.2282376, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "name": "Borne libre accès Entrepôt du bricolage - L'Isle d'Abeau", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "source": "Terrain" + } + }, + { + "type": "node", + "id": 10687753904, + "lat": 45.5915432, + "lon": 5.2470311, + "tags": { + "access": "yes", + "addr:country": "FR", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "12", + "email": "exploitation@driveco.com", + "motorcar": "yes", + "name": "Decathlon - Bourgoin-Jallieu", + "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", + "operator": "Driveco", + "owner:ref:FR:SIREN": "500569405", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PDECATHLON383002", + "scooter": "no", + "socket:type2": "12", + "socket:type2:output": "22 kW", + "socket:typee": "6", + "socket:typee:output": "3 kW", + "source": "https://www.data.gouv.fr/fr/datasets/fichier-consolide-des-bornes-de-recharge-pour-vehicules-electriques/", + "source:date": "2023-02-23", + "start_date": "2022-02-25" + } + }, + { + "type": "node", + "id": 10688567992, + "lat": 46.6682885, + "lon": 5.5526823, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "Le Groupement Magellan", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10689142341, + "lat": 45.2908981, + "lon": 4.9524032, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDED", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PXEAAPBSHGL", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10689144540, + "lat": 45.2910377, + "lon": 4.9945612, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SDED", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PKMY7EK3TVS", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10689478402, + "lat": 49.4216335, + "lon": 1.0823738, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "email": "hello@powerdot.fr", + "motorcar": "yes", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*GFX*PITMRON", + "socket:chademo": "2", + "socket:type2": "7", + "socket:type2_combo": "6", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10689521306, + "lat": 46.9129065, + "lon": 6.3217222, + "tags": { + "amenity": "charging_station", + "brand": "Start'n Move", + "brand:website": "https://startnmove.com/", + "capacity": "2", + "socket:type2:manufacturer": "Secma", + "socket:type2:model": "200.23260CC", + "socket:type2:serial_number": "0010025222", + "socket:type2:start_date": "2021", + "socket:type2_cable": "2", + "socket:typee": "2", + "socket:typee:current": "16", + "socket:typee:voltage": "250" + } + }, + { + "type": "node", + "id": 10691659247, + "lat": 43.2085473, + "lon": 1.0858631, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Eleance", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*P58E28A0851F24", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10691885599, + "lat": 47.4480123, + "lon": 6.5798828, + "tags": { + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "name": "Tesla Supercharger", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla" + } + }, + { + "type": "node", + "id": 10692205777, + "lat": 48.8602397, + "lon": 2.340634, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "operator": "Be lib" + } + }, + { + "type": "node", + "id": 10692568351, + "lat": 47.124826, + "lon": -0.9949091, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10692738613, + "lat": 43.5804717, + "lon": 1.3264861, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "fixme": "this charging stations have the same commons image as the nearby one, this can't be possible of couse, to be checked which one is wrong", + "motorcar": "yes", + "network": "alizé", + "network:website": "https://alizecharge.com/", + "opening_hours": "24/7", + "operator": "Bouygues Energies & Services", + "parking:fee": "no", + "payment:app": "yes", + "payment:cash": "no", + "payment:membership_card": "yes", + "phone": "+33 805 02 14 80", + "ref": "FR*TLS*E31557*001*2", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "90 kW" + } + }, + { + "type": "node", + "id": 10692738614, + "lat": 43.5804392, + "lon": 1.3264446, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "fixme": "this charging stations have the same commons image as the nearby one, this can't be possible of couse, to be checked which one is wrong", + "motorcar": "yes", + "network": "alizé", + "network:website": "https://alizecharge.com/", + "opening_hours": "24/7", + "operator": "Bouygues Energies & Services", + "parking:fee": "no", + "payment:app": "yes", + "payment:cash": "no", + "payment:membership_card": "yes", + "phone": "+33 805 02 14 80", + "ref": "FR*TLS*E31557*001*1", + "socket:type2_combo": "2", + "socket:type2_combo:output": "180 kW", + "wikimedia_commons": "File:Borne de recharge alizé à Tournefeuille.jpg" + } + }, + { + "type": "node", + "id": 10692775579, + "lat": 44.7340148, + "lon": 4.9251858, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "ChargePoint", + "brand:wikidata": "Q5176149", + "covered": "no", + "level": "0", + "name": "ChargePoint", + "operator": "ChargePoint", + "operator:wikidata": "Q5176149", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10693360570, + "lat": 48.8982202, + "lon": 2.3232506, + "tags": { + "amenity": "charging_station", + "brand": "Belib'" + } + }, + { + "type": "node", + "id": 10693427936, + "lat": 46.3052798, + "lon": -0.4877312, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "check_date": "2023-02-25", + "fixme": "à corriger/améliorer le détail", + "manufacturer": "Schneider Electric", + "model": "EVC1S22P4E4ERF", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 10694045226, + "lat": 48.6459437, + "lon": 2.2775106, + "tags": { + "access": "employees", + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10694427453, + "lat": 43.7312776, + "lon": 3.3230838, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "virta", + "capacity": "2", + "fee": "yes", + "operator": "ZEPHYRE SAS", + "payment:carte_bleue": "yes", + "payment:credit_cards": "yes", + "payment:paypal": "yes", + "payment:rfid": "yes" + } + }, + { + "type": "node", + "id": 10694477834, + "lat": 48.8703418, + "lon": 2.0726818, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Seymaborne (SEY78)", + "operator": "Bouygues Énergies et Services", + "owner": "Ville de L'ETANG LA VILLE", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*Y16*P78224001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10694564710, + "lat": 50.2995438, + "lon": 2.8012332, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté Urbaine d'Arras", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62753001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10694958983, + "lat": 44.7903033, + "lon": -0.6031624, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Gradignan - Hôtel Campanile", + "note": "exact position must be confirmed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fODY1MDVmYjAtNmY0Mi0xMWVkLThlNGUtMmI2ZThmY2I1NmFk" + } + }, + { + "type": "node", + "id": 10694980682, + "lat": 49.0752273, + "lon": 2.5587923, + "tags": { + "access": "permit", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10694987188, + "lat": 43.2811758, + "lon": 1.0658939, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10694993705, + "lat": 43.5868245, + "lon": 3.8911374, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Montpellier - Hôtel Campanile", + "note": "accuratte position needed", + "operator": "Electra", + "payment:app": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fN2JmMzFlOGEtNzE4Yy0xMWVkLTlmZDYtMzdjNWEyYjA5ZTkx" + } + }, + { + "type": "node", + "id": 10695000338, + "lat": 48.5214916, + "lon": -3.9461063, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schneider Electric" + } + }, + { + "type": "node", + "id": 10695712660, + "lat": 42.8167712, + "lon": 0.3221816, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10697089058, + "lat": 46.2893063, + "lon": -0.5112165, + "tags": { + "FIXME": "à corriger/améliorer le détail", + "amenity": "charging_station", + "capacity": "3", + "check_date": "2023-02-25", + "manufacturer": "DBT", + "model": "NG314P25MP5", + "motorcar": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10697089059, + "lat": 46.2892791, + "lon": -0.5111673, + "tags": { + "FIXME": "à corriger/améliorer le détail", + "amenity": "charging_station", + "capacity": "1", + "check_date": "2023-02-25", + "manufacturer": "DBT", + "model": "NG122O25MP5", + "motorcar": "yes", + "socket:type2_combo": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10697089060, + "lat": 46.2892682, + "lon": -0.5111475, + "tags": { + "FIXME": "à corriger/améliorer le détail", + "amenity": "charging_station", + "capacity": "1", + "check_date": "2023-02-25", + "manufacturer": "DBT", + "model": "NG122O25MP5", + "motorcar": "yes", + "socket:type2_combo": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10697089061, + "lat": 46.2892573, + "lon": -0.5111277, + "tags": { + "FIXME": "à corriger/améliorer le détail", + "amenity": "charging_station", + "capacity": "1", + "check_date": "2023-02-25", + "manufacturer": "DBT", + "model": "NG122O25MP5", + "motorcar": "yes", + "socket:type2_combo": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10697155013, + "lat": 46.091519, + "lon": 6.5038479, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10697416710, + "lat": 44.0527527, + "lon": 4.779628, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte d'Électricité du Gard", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S30*P30221001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10697432886, + "lat": 46.1737413, + "lon": 1.8788736, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10697433086, + "lat": 48.8633093, + "lon": 2.1817772, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10697675632, + "lat": 49.1026019, + "lon": 6.1570527, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10697675633, + "lat": 49.1025619, + "lon": 6.1570935, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10701709522, + "lat": 50.2905978, + "lon": 3.9659956, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "8", + "operator": "Carrefour", + "operator:type": "private", + "start_date": "2023-02" + } + }, + { + "type": "node", + "id": 10701709523, + "lat": 50.2905672, + "lon": 3.9657954, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4", + "operator": "Carrefour", + "operator:type": "private", + "start_date": "2023-02" + } + }, + { + "type": "node", + "id": 10702567673, + "lat": 47.4260486, + "lon": 0.6562883, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10704747569, + "lat": 47.3382398, + "lon": 0.7003714, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10705180212, + "lat": 43.2551048, + "lon": 1.1191835, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "SDEHG", + "payment:credit_cards": "no", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S31*PVUSGRP", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10705263938, + "lat": 50.6521277, + "lon": 3.1529722, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10705263947, + "lat": 50.6537103, + "lon": 3.1522588, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10707024158, + "lat": 48.8137829, + "lon": 2.3408737, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "capacity:charging": "2", + "fee": "yes", + "operator": "SIPPEREC - La Borne Bleue" + } + }, + { + "type": "node", + "id": 10707956605, + "lat": 48.8441553, + "lon": 2.3776033, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2023-03-02" + } + }, + { + "type": "node", + "id": 10709045470, + "lat": 49.3996632, + "lon": 0.1266578, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "MobiSDEC", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S14*PLWXGXZ6NVG", + "socket:type2": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10709235740, + "lat": 44.8230589, + "lon": 0.987989, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10711836495, + "lat": 50.2919459, + "lon": 2.747897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté Urbaine d'Arras", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041013", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10712775603, + "lat": 45.2319939, + "lon": 5.6841692, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10716802983, + "lat": 44.3796005, + "lon": 2.5658744, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "source": "survey 2023" + } + }, + { + "type": "node", + "id": 10716803212, + "lat": 44.3692712, + "lon": 2.5860448, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "name": "IONITY Rodez", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "ref": "4", + "ref:EU:EVSE": "FR*ION*E4594*04", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "survey 2023" + } + }, + { + "type": "node", + "id": 10716803213, + "lat": 44.3692566, + "lon": 2.5860696, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "name": "IONITY Rodez", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "ref": "3", + "ref:EU:EVSE": "FR*ION*E4594*03", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "survey 2023" + } + }, + { + "type": "node", + "id": 10716803214, + "lat": 44.3692424, + "lon": 2.5860931, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "name": "IONITY Rodez", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "ref": "2", + "ref:EU:EVSE": "FR*ION*E4594*02", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "survey 2023" + } + }, + { + "type": "node", + "id": 10716803225, + "lat": 44.3692, + "lon": 2.5861621, + "tags": { + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "1", + "fee": "yes", + "name": "IONITY Rodez", + "opening_hours": "24/7", + "operator": "Ionity", + "payment:app": "yes", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*ION*E4594*51;FR*ION*E4594*52;FR*ION*E4594*53", + "socket:chademo": "1", + "socket:type2_cable": "1", + "socket:type2_combo": "1", + "socket:type2_combo:output": "350 kW", + "source": "survey 2023", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10716803246, + "lat": 44.369576, + "lon": 2.5895618, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "network": "izivia", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:izivia": "yes", + "ref": "MAT-017842", + "socket:type2": "1", + "socket:type2:output": "7kW", + "socket:typee": "1", + "socket:typee:output": "2.3kW" + } + }, + { + "type": "node", + "id": 10716803272, + "lat": 44.3690745, + "lon": 2.5890844, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22kW", + "contact:website": "https://izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-onet-le-chateau/route-d%E2%80%99espalion/60f7f15ed341c65e40a8d66e", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "network": "izivia", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:izivia": "yes", + "ref": "MAT-017840", + "socket:type2": "1", + "socket:type2:output": "7kW", + "socket:typee": "1", + "socket:typee:output": "2.3kW" + } + }, + { + "type": "node", + "id": 10716803274, + "lat": 44.369089, + "lon": 2.5890599, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22kW", + "contact:website": "https://izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-onet-le-chateau/route-d%E2%80%99espalion/60f7f15ed341c65e40a8d66e", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "network": "izivia", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:izivia": "yes", + "ref": "MAT-017844", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:typee": "1", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 10716803275, + "lat": 44.3690741, + "lon": 2.5890837, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22kW", + "contact:website": "https://izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-onet-le-chateau/route-d%E2%80%99espalion/60f7f15ed341c65e40a8d66e", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "network": "izivia", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:izivia": "yes", + "ref": "MAT-017841", + "socket:type2": "1", + "socket:type2:output": "7kW", + "socket:typee": "1", + "socket:typee:output": "2.3kW" + } + }, + { + "type": "node", + "id": 10716803276, + "lat": 44.3690887, + "lon": 2.5890594, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charging_station:output": "22kW", + "contact:website": "https://izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-onet-le-chateau/route-d%E2%80%99espalion/60f7f15ed341c65e40a8d66e", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "evlink smart wallbox", + "network": "izivia", + "opening_hours": "24/7", + "payment:app": "yes", + "payment:izivia": "yes", + "ref": "MAT-017845", + "socket:type2": "1", + "socket:type2:output": "22kW", + "socket:typee": "1", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 10717581005, + "lat": 47.9750687, + "lon": 3.1989071, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Total Charge Rapide", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*HPC*PNF058931", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10718839358, + "lat": 48.361355, + "lon": -3.43409, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "OUEST CHARGE - 22", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S22*PSDE2512", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10719038852, + "lat": 48.8889385, + "lon": 2.2668676, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10719038854, + "lat": 48.8840592, + "lon": 2.2725579, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Metropolis" + } + }, + { + "type": "node", + "id": 10719781971, + "lat": 44.2668709, + "lon": 4.635763, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR16", + "payment:credit_cards": "yes", + "phone": "+33 3 69 24 67 32", + "ref:EU:EVSE": "FR*FR1*PQFLVU6OYF0", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10720586021, + "lat": 49.474365, + "lon": 1.094714, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "email": "contact@sga-industries.com", + "fee": "yes", + "motorcar": "yes", + "network": "Réseau de recharge L2B", + "opening_hours": "Mo-Fr 09:00-18:00", + "operator": "SGA Industries", + "owner": "L2B Lorette Beaucamp Bonnet", + "payment:credit_cards": "no", + "phone": "+33232103853", + "ref:EU:EVSE": "FR*SGA*P1M2003", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10721227009, + "lat": 48.9753986, + "lon": 2.3251916, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-03-08" + } + }, + { + "type": "node", + "id": 10727298705, + "lat": 48.9417414, + "lon": 2.3234588, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE15231", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022", + "survey:date": "2023-03-17" + } + }, + { + "type": "node", + "id": 10727401805, + "lat": 48.8448836, + "lon": 2.3290388, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "network": "Ubeeqo" + } + }, + { + "type": "node", + "id": 10727753178, + "lat": 50.6326761, + "lon": 1.5844949, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération du Boulonnais", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H05*P62604003", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10728060313, + "lat": 48.0203647, + "lon": 0.1264833, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Vinci", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10732389722, + "lat": 48.4452085, + "lon": 3.9266469, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "SDEA" + } + }, + { + "type": "node", + "id": 10733974173, + "lat": 47.9399767, + "lon": 6.8713468, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10735493439, + "lat": 43.3936078, + "lon": 3.664068, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Révéo", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Sète - Corniche de Neubeurg", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "ref": "FR*S34*E34301*007*3;FR*S34*E34301*007*4", + "ref:EU:EVSE": "FR*S34*P34301*007", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 10735578564, + "lat": 43.2909137, + "lon": -0.4052277, + "tags": { + "access": "customers", + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10736513606, + "lat": 48.9354164, + "lon": 2.3360863, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Sogeif", + "survey:date": "2023-03-15" + } + }, + { + "type": "node", + "id": 10736957000, + "lat": 43.0748081, + "lon": 1.6419483, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "fixme": "location aproximately", + "network": "Ionity", + "opening_hours": "24/7", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10738119731, + "lat": 43.3981816, + "lon": 3.6612924, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Révéo", + "capacity": "2", + "charging_station:output": "22 kW", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34301004", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 10739213998, + "lat": 42.8305823, + "lon": 3.0360836, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Montaner et Fils" + } + }, + { + "type": "node", + "id": 10739304035, + "lat": 42.851587, + "lon": 3.0342164, + "tags": { + "amenity": "charging_station", + "brand": "Lidl", + "capacity": "2", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10739304036, + "lat": 42.8516256, + "lon": 3.0341612, + "tags": { + "amenity": "charging_station", + "brand": "Lidl", + "capacity": "2", + "motorcar": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10739304044, + "lat": 42.8516731, + "lon": 3.0341088, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10739369589, + "lat": 50.1760435, + "lon": 3.2415044, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass Pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération de Cambrai", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H22*P59122001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10739378114, + "lat": 50.1745603, + "lon": 3.2387288, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass Pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération de Cambrai", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H22*P59122007", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10739996480, + "lat": 44.5318888, + "lon": 4.7474682, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Carrefour", + "capacity": "150kW, 22kW, 50kWz" + } + }, + { + "type": "node", + "id": 10740109175, + "lat": 43.2680992, + "lon": 5.39396, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "4", + "fee": "yes", + "hgv": "no", + "level": "0", + "motorcar": "yes", + "name": "Total Energies", + "network": "Total Energies", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "no", + "payment:cash": "no", + "payment:membership_card": "no", + "scooter": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10741159138, + "lat": 48.6753183, + "lon": 6.2069606, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Bluebus", + "capacity": "1", + "operator": "Stan" + } + }, + { + "type": "node", + "id": 10741159139, + "lat": 48.6753345, + "lon": 6.207005, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Bluebus", + "capacity": "1", + "operator": "Stan" + } + }, + { + "type": "node", + "id": 10741159140, + "lat": 48.6753514, + "lon": 6.2070491, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Bluebus", + "capacity": "1", + "operator": "Stan" + } + }, + { + "type": "node", + "id": 10741159141, + "lat": 48.6753667, + "lon": 6.2070928, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Bluebus", + "capacity": "1", + "operator": "Stan" + } + }, + { + "type": "node", + "id": 10741159142, + "lat": 48.6753829, + "lon": 6.2071365, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Bluebus", + "capacity": "1", + "operator": "Stan" + } + }, + { + "type": "node", + "id": 10741400769, + "lat": 49.360078, + "lon": 0.0819692, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Izivia Express", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Izivia Express", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*E04*POAZS23312", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10741400770, + "lat": 49.3600622, + "lon": 0.0819276, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Izivia Express", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "Izivia Express", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*E04*POAZS23311", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10741691643, + "lat": 43.326733, + "lon": 5.413793, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PEPGB68LSIC", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10742326625, + "lat": 43.2290067, + "lon": 3.0506751, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "bicycle": "yes", + "brand": "Lidl", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "opening_hours": "24/7", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "scooter": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10742332905, + "lat": 48.8927334, + "lon": 2.2065787, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "network": "La borne bleue", + "operator": "Bouygues Énergies et Services", + "owner": "La borne bleue", + "ref:EU:EVSE": "FR*SIP*P92050006", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10742943199, + "lat": 43.3429095, + "lon": 3.2253079, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "22 KW", + "operator": "LA VILLA GUY & SPA" + } + }, + { + "type": "node", + "id": 10744907234, + "lat": 43.3043363, + "lon": 3.338112, + "tags": { + "amenity": "charging_station", + "brand": "Révéo", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34209001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10745239200, + "lat": 48.5845141, + "lon": 7.7387243, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Freshmile" + } + }, + { + "type": "node", + "id": 10747944623, + "lat": 49.0321794, + "lon": 2.1022202, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10748194207, + "lat": 49.4796312, + "lon": 2.883402, + "tags": { + "amenity": "charging_station", + "brand": "Schneider Electric - EVLink City", + "capacity": "2", + "fee": "yes", + "operator": "Sezeo", + "payment:freshmile": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10748194208, + "lat": 49.4777034, + "lon": 2.8815144, + "tags": { + "amenity": "charging_station", + "brand": "Schneider Electric - EVLink City", + "capacity": "2", + "fee": "yes", + "operator": "Sezeo", + "payment:freshmile": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10748198490, + "lat": 49.4818931, + "lon": 2.8731152, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Schneider Electric", + "capacity": "2", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10748198491, + "lat": 49.4818549, + "lon": 2.8730541, + "tags": { + "amenity": "charging_station", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10748198492, + "lat": 49.48269, + "lon": 2.8693857, + "tags": { + "amenity": "charging_station", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10749474949, + "lat": 48.5396345, + "lon": 2.6600359, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10749474954, + "lat": 48.5425606, + "lon": 2.6404712, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10750361915, + "lat": 49.5177338, + "lon": 2.9298202, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361916, + "lat": 49.5177366, + "lon": 2.9298265, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361917, + "lat": 49.5177148, + "lon": 2.9298855, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361918, + "lat": 49.5177087, + "lon": 2.9298781, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361919, + "lat": 49.5176935, + "lon": 2.9299418, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361920, + "lat": 49.5176865, + "lon": 2.9299358, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361921, + "lat": 49.5176695, + "lon": 2.9300002, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750361922, + "lat": 49.5176639, + "lon": 2.9299948, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750423772, + "lat": 49.5699819, + "lon": 2.9769102, + "tags": { + "amenity": "charging_station", + "socket:chademo": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 10750574024, + "lat": 49.5106089, + "lon": 2.9225255, + "tags": { + "amenity": "charging_station", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10750800366, + "lat": 50.5486843, + "lon": 3.0531275, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "12", + "fee": "yes", + "name": "Ionity Seclin", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "12", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10751440303, + "lat": 50.2824467, + "lon": 2.7967861, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté Urbaine d'Arras", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10751459991, + "lat": 50.2635001, + "lon": 2.7887168, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté Urbaine d'Arras", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62099001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10751480637, + "lat": 50.2851601, + "lon": 2.7757128, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté Urbaine d'Arras", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H06*P62041003", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10751787264, + "lat": 42.5440518, + "lon": 2.9216147, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S66*P66175001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10752102991, + "lat": 49.1434005, + "lon": 6.1784657, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10752154871, + "lat": 49.1451524, + "lon": 6.1777963, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10752154872, + "lat": 49.1457667, + "lon": 6.1784817, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10752154873, + "lat": 49.1457618, + "lon": 6.1784037, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10752154874, + "lat": 49.1457594, + "lon": 6.178333, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10752154875, + "lat": 49.1457537, + "lon": 6.178262, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10753083462, + "lat": 43.5323255, + "lon": 1.4014237, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "carrefour energie", + "capacity": "22", + "charge": "0,30", + "fee": "yes", + "fixme": "add proper tag: payment:gratuit_1heure = yes", + "operator": "Allego", + "payment:account_cards": "yes", + "payment:app": "yes", + "payment:rfid_card": "yes" + } + }, + { + "type": "node", + "id": 10753175934, + "lat": 43.5285933, + "lon": 1.4029538, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "lidl", + "capacity": "120", + "charge": "0,40", + "fee": "yes", + "operator": "ABB", + "payment:rfid_frechmiles": "yes" + } + }, + { + "type": "node", + "id": 10753176929, + "lat": 43.5285846, + "lon": 1.4029834, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Lidl", + "capacity": "22", + "charge": "0,25", + "fee": "yes", + "operator": "ABB", + "payment:rfid_frechmiles": "yes" + } + }, + { + "type": "node", + "id": 10754048110, + "lat": 45.7628756, + "lon": 4.8420102, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Liberté", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY302D;MAT-008963", + "ref:EU:EVSE": "FR*GLY*PLYON8041", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10754048111, + "lat": 45.7629017, + "lon": 4.842008, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Liberté", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY302C;MAT-008962", + "ref:EU:EVSE": "FR*GLY*PLYON8031", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10754048112, + "lat": 45.76293, + "lon": 4.8420056, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Liberté", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY302B;MAT-008961", + "ref:EU:EVSE": "FR*GLY*PLYON8021", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10754048113, + "lat": 45.7629542, + "lon": 4.8420035, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Liberté", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY302A;MAT-008960", + "ref:EU:EVSE": "FR*GLY*PLYON8011", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10754091205, + "lat": 43.6794427, + "lon": 3.8146926, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de chargement pour voiture électrique", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Hérault Énergies 34", + "ref:EU:EVSE": "FR*S34*P34247*001", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "locale" + } + }, + { + "type": "node", + "id": 10756148192, + "lat": 47.8628143, + "lon": 4.5721766, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "1.50 EUR + 0.40 EUR/kWh + 0.005 EUR/Min", + "fee": "yes", + "network": "freshmile", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "4 kW" + } + }, + { + "type": "node", + "id": 10758588563, + "lat": 46.3891343, + "lon": 6.5208397, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10758588564, + "lat": 46.3890807, + "lon": 6.5208303, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10759360798, + "lat": 49.4635884, + "lon": 2.8636411, + "tags": { + "amenity": "charging_station", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10759813146, + "lat": 48.7982652, + "lon": 2.4554376, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10759926200, + "lat": 43.0615774, + "lon": 0.5897766, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "4", + "fee": "yes", + "name": "Ionity Gourdan Polignan", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "4", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10760018205, + "lat": 49.2624749, + "lon": 3.9818376, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10762031673, + "lat": 43.2474792, + "lon": 5.3910514, + "tags": { + "amenity": "charging_station", + "description": "izivia la recharge x2" + } + }, + { + "type": "node", + "id": 10763397567, + "lat": 50.4243271, + "lon": 2.7432047, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "a.buffler@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Bouygues Énergies et Services", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*BE2*P62510001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10765525109, + "lat": 46.3908467, + "lon": 6.5252893, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10765525110, + "lat": 46.3907851, + "lon": 6.5253109, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10766961430, + "lat": 43.6094347, + "lon": 3.4630814, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10766961431, + "lat": 43.6094599, + "lon": 3.4630358, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10766961432, + "lat": 43.6094817, + "lon": 3.4629967, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10768612860, + "lat": 43.7316364, + "lon": -1.0458657, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Saint-Paul-lès-Dax", + "payment:credit_cards": "yes", + "phone": "+33 3 69 24 67 32", + "ref:EU:EVSE": "FR*LE2*PZJ0HFJ186C", + "socket:type2": "4", + "socket:typee": "1", + "source": "local knowledge;data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10768809989, + "lat": 45.3583282, + "lon": -0.1964852, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10768809990, + "lat": 45.3583324, + "lon": -0.1964306, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10769554015, + "lat": 43.1798982, + "lon": 3.0110478, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262006", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10770579171, + "lat": 48.7145716, + "lon": 2.0624948, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10771214448, + "lat": 47.3536264, + "lon": 1.1763607, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10773378415, + "lat": 48.6848878, + "lon": 2.3161988, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "Paris-Saclay mobilités" + } + }, + { + "type": "node", + "id": 10774190419, + "lat": 45.5893068, + "lon": 5.2755611, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10774190420, + "lat": 45.5893645, + "lon": 5.2755129, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10774835507, + "lat": 44.0947831, + "lon": 6.2393419, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-03-31" + } + }, + { + "type": "node", + "id": 10775338102, + "lat": 43.2634778, + "lon": 5.3961191, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "2", + "fee": "yes", + "hgv": "no", + "level": "0", + "motorcar": "yes", + "name": "Engie", + "network": "Engie", + "operator": "Engie", + "parking:fee": "no", + "payment:app": "yes", + "payment:cards": "no", + "payment:cash": "no", + "payment:membership_card": "no", + "scooter": "no", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:typee": "1", + "socket:typee:current": "A", + "socket:typee:output": "3 kW", + "socket:typee:voltage": "230 V" + } + }, + { + "type": "node", + "id": 10775759988, + "lat": 48.3545128, + "lon": 5.6870133, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10776181096, + "lat": 46.1393476, + "lon": 6.0723753, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "operator": "CHM Mobility", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10777283998, + "lat": 43.4293355, + "lon": 5.266695, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "description": "chademo + type2", + "hgv": "no", + "motorcar": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "parking:fee": "no", + "scooter": "no", + "socket:chademo": "1" + } + }, + { + "type": "node", + "id": 10777398038, + "lat": 45.5781806, + "lon": 5.6337416, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Guiers", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2": "4", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10777517316, + "lat": 48.407077, + "lon": -3.41865, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "OUEST CHARGE - 22", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S22*PSDE24011", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10777820926, + "lat": 45.8855682, + "lon": 0.9012631, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Commune de Saint-Junien", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3.7 kW" + } + }, + { + "type": "node", + "id": 10777966424, + "lat": 43.429305, + "lon": 5.2667048, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "hgv": "no", + "motorcar": "yes", + "operator": "IKEA", + "operator:wikidata": "Q54078", + "parking:fee": "no", + "scooter": "no", + "socket:type2_cable": "1" + } + }, + { + "type": "node", + "id": 10778086308, + "lat": 49.1460777, + "lon": 0.2669652, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Kyriad Lisieux Charging Station", + "capacity": "5", + "charge": "0.69/kwh", + "fee": "yes", + "manufacturer": "Rossini Energy", + "operator": "Kyriad LISIEUX", + "payment:app": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10778247437, + "lat": 43.6759594, + "lon": 3.9826941, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10778616861, + "lat": 44.6061083, + "lon": 2.0248907, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2", + "motorcar": "yes", + "motorcycle": "yes", + "operator": "Greenspot", + "payment:cash": "no", + "payment:visa": "yes", + "scooter": "yes", + "socket:type2": "2", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10778702586, + "lat": 47.3872503, + "lon": 0.2211837, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10778821133, + "lat": 45.8976353, + "lon": 0.9175106, + "tags": { + "amenity": "charging_station", + "operator": "Renault", + "operator:wikidata": "Q6686" + } + }, + { + "type": "node", + "id": 10779159127, + "lat": 45.8762095, + "lon": -0.6783802, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "brand": "Evobox", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE", + "note": "je n'ai constaté que deux emplacements pour charger la voiture mais 3 prises de 3 types différentes (bleue, noir et gris/jaune). Je maintiens la capacité à 2.", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:credit_cards": "no", + "ref": "MAT-013308", + "ref:EU:EVSE": "FR*S17*PMB173212", + "socket:chademo": "1", + "source": "survey;data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10779340151, + "lat": 14.4709694, + "lon": -60.8668616, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "capacity": "2", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10779941458, + "lat": 44.5880234, + "lon": 4.7046722, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10779993995, + "lat": 43.3154003, + "lon": 5.3684615, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "supervision-ev.france@totalenergies.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropole d'Aix-Marseille-Provence", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "Métropole d'Aix-Marseille-Provence", + "payment:credit_cards": "no", + "phone": "+33483568009", + "ref:EU:EVSE": "FR*TCB*P00802", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10781787348, + "lat": 48.4041097, + "lon": -3.4286127, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "OUEST CHARGE - 22", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S22*PSDE2212", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10781960948, + "lat": 48.6353009, + "lon": 2.284972, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.25€/kwh", + "covered": "no", + "fee": "yes", + "level": "0", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10782089265, + "lat": 48.6353296, + "lon": 2.2848241, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "charge": "0.25€/kwh", + "covered": "no", + "fee": "yes", + "level": "0", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10782581433, + "lat": 45.7677447, + "lon": 4.8583543, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Brotteaux", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY603B;MAT-008969", + "ref:EU:EVSE": "FR*GLY*PLYON8221", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10782581434, + "lat": 45.7677115, + "lon": 4.8583073, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Brotteaux", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY603C;MAT-008970", + "ref:EU:EVSE": "FR*GLY*PLYON8231", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10782581435, + "lat": 45.7676811, + "lon": 4.8582631, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Brotteaux", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY603D;MAT-008971", + "ref:EU:EVSE": "FR*GLY*PLYON8241", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10782643188, + "lat": 45.7599262, + "lon": 4.8417138, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Servient - Préfecture", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY313C;MAT-025302", + "ref:EU:EVSE": "FR*GLY*PLYON16331", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10782643189, + "lat": 45.7599251, + "lon": 4.8418117, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Servient - Préfecture", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY313D;MAT-025303", + "ref:EU:EVSE": "FR*GLY*PLYON16341", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10782643190, + "lat": 45.7599284, + "lon": 4.8415167, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Servient - Préfecture", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY313A;MAT-025300", + "ref:EU:EVSE": "FR*GLY*PLYON16311", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10782643191, + "lat": 45.7599274, + "lon": 4.8416106, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Servient - Préfecture", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY313B;MAT-025301", + "ref:EU:EVSE": "FR*GLY*PLYON16321", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10783709687, + "lat": 44.2021367, + "lon": 4.7271247, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10784673672, + "lat": 45.7843563, + "lon": 3.0901419, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Ze-Watt" + } + }, + { + "type": "node", + "id": 10785277568, + "lat": 43.5694994, + "lon": 1.3914649, + "tags": { + "amenity": "charging_station", + "brand": "smoov", + "capacity": "2", + "name": "Allego", + "operator": "Allego", + "parking:fee": "yes", + "ref": "FRALLEGO800047", + "socket:type2_combo": "2", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10785277569, + "lat": 43.5695431, + "lon": 1.3914154, + "tags": { + "amenity": "charging_station", + "brand": "smoov", + "capacity": "2", + "name": "Allego", + "operator": "Allego", + "parking:fee": "yes", + "ref": "FRALLEGO800050", + "socket:type2_combo": "2", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10785277570, + "lat": 43.569587, + "lon": 1.3913654, + "tags": { + "amenity": "charging_station", + "brand": "smoov", + "capacity": "2", + "name": "Allego", + "operator": "Allego", + "parking:fee": "yes", + "ref": "FRALLEGO800045", + "socket:type2_combo": "2", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10786668172, + "lat": 45.7632943, + "lon": 4.8484314, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Duguesclin - Les Halles", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY304D;MAT-008967", + "ref:EU:EVSE": "FR*GLY*PLYON8141", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10786668173, + "lat": 45.7633875, + "lon": 4.8484128, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Duguesclin - Les Halles", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY304B;MAT-008965", + "ref:EU:EVSE": "FR*GLY*PLYON8121", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10786668174, + "lat": 45.7634318, + "lon": 4.8484039, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Duguesclin - Les Halles", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY304A;MAT-008964", + "ref:EU:EVSE": "FR*GLY*PLYON8111", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10786668175, + "lat": 45.7633427, + "lon": 4.8484217, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Duguesclin - Les Halles", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY304C;MAT-008966", + "ref:EU:EVSE": "FR*GLY*PLYON8131", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10786732857, + "lat": 45.7586068, + "lon": 4.8616245, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Villette - Pompidou", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY316A", + "ref:EU:EVSE": "FR*GLY*PLYON10811", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "survey:date": "2023-06-12" + } + }, + { + "type": "node", + "id": 10786732858, + "lat": 45.7586471, + "lon": 4.8616271, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Villette - Pompidou", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY316B", + "ref:EU:EVSE": "FR*GLY*PLYON10821", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10786732859, + "lat": 45.7586896, + "lon": 4.8616297, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Villette - Pompidou", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY316C", + "ref:EU:EVSE": "FR*GLY*PLYON10831", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10787163331, + "lat": 45.0665586, + "lon": 5.3900469, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 10787225664, + "lat": 45.1432974, + "lon": 5.2832157, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "designated", + "bicycle_parking": "yes", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10787234394, + "lat": 45.0724289, + "lon": 5.3977439, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10787236872, + "lat": 43.315032, + "lon": 5.3693255, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "supervision-ev.france@totalenergies.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropole d'Aix-Marseille-Provence", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "Métropole d'Aix-Marseille-Provence", + "payment:credit_cards": "no", + "phone": "+33483568009", + "ref:EU:EVSE": "FR*TCB*P00802", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10787245076, + "lat": 45.2565131, + "lon": 5.3378591, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "designated", + "bicycle_parking": "yes", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10787310636, + "lat": 45.2239071, + "lon": 5.4424475, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 10787460998, + "lat": 45.0859107, + "lon": 5.339567, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 10788087677, + "lat": 45.0855582, + "lon": 5.1865353, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 10788123233, + "lat": 45.2554609, + "lon": 5.4082561, + "tags": { + "amenity": "charging_station", + "bicycle": "designated", + "capacity": "4", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 10788599761, + "lat": 46.8660734, + "lon": 4.1890292, + "tags": { + "access": "yes", + "addr:city": "Étang-sur-Arroux", + "addr:country": "FR", + "addr:postcode": "71190", + "addr:street": "Place du Mousseau", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "manufacturer": "E-Totem", + "network": "SYDESL", + "opening_hours": "24/7", + "operator": "Freshmile", + "payment:abonnement": "yes", + "payment:credit_cards": "yes", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10789059998, + "lat": 48.8457546, + "lon": 2.3452116, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "operator": "Belib" + } + }, + { + "type": "node", + "id": 10789864121, + "lat": 48.6943076, + "lon": 6.1291775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 10790429452, + "lat": 48.3696596, + "lon": 5.7039833, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10790442857, + "lat": 45.7845145, + "lon": 3.0903733, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10790442858, + "lat": 45.7844607, + "lon": 3.0903646, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10790493359, + "lat": 43.3090196, + "lon": 5.371385, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PGX8QBUSVXW", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10790696953, + "lat": 43.6195562, + "lon": 1.4370134, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 10792137324, + "lat": 49.8468303, + "lon": 1.9011961, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PHORNOYDUFOUR", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10792217851, + "lat": 45.766362, + "lon": 4.8511478, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Garibaldi - Bugeaud", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY601D;MAT-009108", + "ref:EU:EVSE": "FR*GLY*PLYON11741", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10792217852, + "lat": 45.766419, + "lon": 4.8511366, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Garibaldi - Bugeaud", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY601C;MAT-009107", + "ref:EU:EVSE": "FR*GLY*PLYON11731", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10792217853, + "lat": 45.7664863, + "lon": 4.8511234, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Garibaldi - Bugeaud", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY601B;MAT-009106", + "ref:EU:EVSE": "FR*GLY*PLYON11721", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10792217854, + "lat": 45.766536, + "lon": 4.8511136, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Garibaldi - Bugeaud", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY601BAMAT-009105", + "ref:EU:EVSE": "FR*GLY*PLYON11711", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10792267460, + "lat": 45.7655022, + "lon": 4.8504947, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Vauban - Garibaldi", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY608A;MAT-025314", + "ref:EU:EVSE": "FR*GLY*PLYON17212", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10792267461, + "lat": 45.7654931, + "lon": 4.8504079, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Vauban - Garibaldi", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY608B;MAT-025313", + "ref:EU:EVSE": "FR*GLY*PLYON17222", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10793781059, + "lat": 44.366816, + "lon": 4.6932431, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10793781060, + "lat": 44.3668218, + "lon": 4.6931961, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10793781061, + "lat": 44.36683, + "lon": 4.6931471, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10793781062, + "lat": 44.3668396, + "lon": 4.6930942, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10794740266, + "lat": 43.4552329, + "lon": 5.3163302, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10794806201, + "lat": 49.0098839, + "lon": 2.0417116, + "tags": { + "amenity": "charging_station", + "baran": "Sey Ma Borne", + "capacity": "2", + "operator": "SEY78", + "socket:domestic:output": "3.7", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 10794917371, + "lat": 43.473287, + "lon": 0.9207451, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "22, 3.7", + "fee": "yes", + "name": "Electromaps", + "operator": "Electromaps" + } + }, + { + "type": "node", + "id": 10795297148, + "lat": 46.3936884, + "lon": 6.8003902, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "4", + "description:de": "4 Schukosteckdosen", + "fee": "no", + "motorcar": "no", + "motorcycle": "no", + "socket:schuko": "4" + } + }, + { + "type": "node", + "id": 10796615184, + "lat": 43.6875478, + "lon": 3.5850409, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "opening_hours": "24/7", + "operator": "Révéo", + "parking:fee": "no", + "ref:EU:EVSE": "FR*S34*E34010*001*1;FR*S34*E34010*001*2", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10796648106, + "lat": 44.0757112, + "lon": 6.1880409, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10796694008, + "lat": 42.5777771, + "lon": 2.8483625, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-04-09" + } + }, + { + "type": "node", + "id": 10796929268, + "lat": 43.9410232, + "lon": 7.4125255, + "tags": { + "amenity": "charging_station", + "note": "for bicycles" + } + }, + { + "type": "node", + "id": 10797091975, + "lat": 42.6411993, + "lon": 2.8762883, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10798144246, + "lat": 48.7981676, + "lon": 2.3229946, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Orange" + } + }, + { + "type": "node", + "id": 10798144247, + "lat": 48.7981724, + "lon": 2.3229675, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "operator": "Orange" + } + }, + { + "type": "node", + "id": 10799687714, + "lat": 50.2038252, + "lon": 3.8131972, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*H02*P59068001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10799742945, + "lat": 46.2866, + "lon": -0.4141431, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "AlterBase", + "operator": "Séolis", + "socket:type3c": "2", + "socket:type3c:current": "32 A", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:current": "16 A", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10799845440, + "lat": 43.3253329, + "lon": 3.0343628, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR22", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PFSGMKTZIJ9", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10799918737, + "lat": 49.0240677, + "lon": 1.1603546, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "SIEGE 27", + "operator": "SGA Mobility" + } + }, + { + "type": "node", + "id": 10799952342, + "lat": 42.6755506, + "lon": 2.8894767, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10801316405, + "lat": 44.4386329, + "lon": 2.0325411, + "tags": { + "amenity": "charging_station", + "amperage": "120", + "authentication:membership_card": "yes", + "brand": "EVBox", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "owner": "Syndicat Intercomunal d’Énergies du Département de l’Aveyron", + "ref:EU:EVSE": "FR*S12*P12301001", + "socket:chademo": "yes", + "socket:chademo:output": "50", + "socket:type2": "yes", + "socket:type2:output": "43", + "socket:type2_combo": "yes", + "socket:type2_combo:output": "50", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "500" + } + }, + { + "type": "node", + "id": 10801386205, + "lat": 44.4274077, + "lon": 1.9666309, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "owner": "Syndicat Intercomunal d’Énergies du Département de l’Aveyron", + "ref:EU:EVSE": "FR*S12*P12217001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10801490405, + "lat": 44.4867273, + "lon": 1.8443714, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "owner": "Fédération Départementale d'Énergies du Lot", + "payment:coins": "no", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "payment:notes": "no", + "ref:EU:EVSE": "FR*S46*P46045001", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10801539805, + "lat": 47.3022139, + "lon": 5.1145846, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10801925758, + "lat": 45.5750593, + "lon": 4.8099959, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "operator": "EUROCOMMERCIAL" + } + }, + { + "type": "node", + "id": 10802151728, + "lat": 44.6482941, + "lon": 1.8383129, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Révéo", + "operator": "Bouygues Énergies et Services", + "owner": "Fédération Départementale d'Énergies du Lot", + "ref:EU:EVSE": "FR*S46*P46176001", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10802491669, + "lat": 48.3674731, + "lon": -3.5198196, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "OUEST CHARGE - 22", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "OUEST CHARGE - 22", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S22*PSDE26511", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10802543075, + "lat": 46.0030117, + "lon": 0.8500936, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33 9 72 66 80 01", + "ref:EU:EVSE": "FR*S16*PMB167212", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10802574309, + "lat": 46.0030168, + "lon": 0.8500803, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33 9 72 66 80 01", + "ref:EU:EVSE": "FR*S16*PMB167211", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10802729405, + "lat": 44.0326277, + "lon": -1.1999147, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10803173371, + "lat": 46.9547824, + "lon": 6.1171451, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10803290719, + "lat": 43.4214452, + "lon": 3.1623285, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10803290720, + "lat": 43.4214094, + "lon": 3.1623633, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10803919137, + "lat": 45.7618483, + "lon": 4.8493662, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Bonnel", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY317A;MAT-009109", + "ref:EU:EVSE": "FR*GLY*PLYON12811", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10803919138, + "lat": 45.7618457, + "lon": 4.8493212, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Bonnel", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY317B;MAT-009110", + "ref:EU:EVSE": "FR*GLY*PLYON12821", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10803919139, + "lat": 45.7618408, + "lon": 4.8492361, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Bonnel", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY317D;MAT-009112", + "ref:EU:EVSE": "FR*GLY*PLYON12841", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10803919140, + "lat": 45.7618432, + "lon": 4.849277, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Bonnel", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY317C;MAT-009111", + "ref:EU:EVSE": "FR*GLY*PLYON12831", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10805534267, + "lat": 48.9853735, + "lon": 7.8577292, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10807045930, + "lat": 45.7590821, + "lon": 4.8457901, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Saxe - Place Guichard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY303D;MAT-009094", + "ref:EU:EVSE": "FR*GLY*PLYON11441", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10807045931, + "lat": 45.7590311, + "lon": 4.8458008, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Saxe - Place Guichard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY303C;MAT-009093", + "ref:EU:EVSE": "FR*GLY*PLYON11431", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10807045932, + "lat": 45.758953, + "lon": 4.8458163, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Saxe - Place Guichard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY303B;MAT-009092", + "ref:EU:EVSE": "FR*GLY*PLYON11421", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10807045933, + "lat": 45.7589095, + "lon": 4.845825, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Saxe - Place Guichard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY303A;MAT-009091", + "ref:EU:EVSE": "FR*GLY*PLYON11411", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10807952994, + "lat": 45.7721959, + "lon": 4.8530367, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Montgolfier", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY607B;MAT-009038", + "ref:EU:EVSE": "FR*GLY*PLYON10312", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10807952995, + "lat": 45.7721935, + "lon": 4.853002, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 6 | Montgolfier", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY607C;MAT-009039", + "ref:EU:EVSE": "FR*GLY*PLYON10313", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10809074812, + "lat": 43.6012645, + "lon": 1.3239509, + "tags": { + "amenity": "charging_station", + "brand": "Alizé", + "capacity": "2", + "fee": "yes", + "ref": "FR*TLS*E31149*052*1;FR*TLS*E31149*052*2" + } + }, + { + "type": "node", + "id": 10809074813, + "lat": 43.6012168, + "lon": 1.3238983, + "tags": { + "amenity": "charging_station", + "brand": "Alizé", + "capacity": "2", + "fee": "yes", + "ref": "FR*TLS*E31149*052*3;FR*TLS*E31149*052*4" + } + }, + { + "type": "node", + "id": 10809220307, + "lat": 50.4771434, + "lon": 2.6801786, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10810251966, + "lat": 48.8024552, + "lon": 2.485759, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "operator": "La borne Bleue" + } + }, + { + "type": "node", + "id": 10812956527, + "lat": 45.5640657, + "lon": 5.9257799, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Réseau eborn" + } + }, + { + "type": "node", + "id": 10812988263, + "lat": 45.5783734, + "lon": 5.9045467, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Réseau eborn" + } + }, + { + "type": "node", + "id": 10812992853, + "lat": 45.5884182, + "lon": 5.9167999, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Réseau eborn" + } + }, + { + "type": "node", + "id": 10814221015, + "lat": 48.4497078, + "lon": 0.0987443, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10814511879, + "lat": 45.7269407, + "lon": 3.1875017, + "tags": { + "amenity": "charging_station", + "brand": "Lidl", + "capacity": "4", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10814786097, + "lat": 47.7710932, + "lon": 7.3885159, + "tags": { + "amenity": "charging_station", + "fixme": "Préciser le type de prises, les puissances de charge, conditions d'accès, etc.", + "operator": "Norauto" + } + }, + { + "type": "node", + "id": 10814786098, + "lat": 47.7710797, + "lon": 7.388542, + "tags": { + "amenity": "charging_station", + "fixme": "Préciser le type de prises, les puissances de charge, conditions d'accès, etc.", + "operator": "Norauto" + } + }, + { + "type": "node", + "id": 10814826550, + "lat": 50.52851, + "lon": 2.9432608, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10814867992, + "lat": 50.5231247, + "lon": 2.9374193, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "socket": "type2", + "start_date": "2021-03-17" + } + }, + { + "type": "node", + "id": 10814876587, + "lat": 45.4965025, + "lon": 6.0501299, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10816337006, + "lat": 45.5726999, + "lon": 2.9417536, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2023-04-16" + } + }, + { + "type": "node", + "id": 10816491345, + "lat": 45.5710515, + "lon": 5.9490117, + "tags": { + "amenity": "charging_station", + "charge": "1€/15'", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10816786487, + "lat": 47.3257578, + "lon": 1.1249198, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10817077447, + "lat": 45.7649137, + "lon": 3.0838029, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "SIEG63", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "SIEG63", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S63*P63113J", + "reservation": "yes", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10818981273, + "lat": 46.9793859, + "lon": -1.298621, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10819466742, + "lat": 45.7842979, + "lon": 4.8742508, + "tags": { + "amenity": "charging_station", + "brand": "EVBox", + "capacity": "2", + "ref": "EVB-P2212124" + } + }, + { + "type": "node", + "id": 10819671207, + "lat": 47.9621856, + "lon": 3.5133034, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "1", + "fee": "no", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 10819674402, + "lat": 47.9667267, + "lon": 3.5320659, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "motorcar": "no" + } + }, + { + "type": "node", + "id": 10821996422, + "lat": 44.954306, + "lon": -0.6294613, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVlink", + "capacity": "2", + "operator": "AtlanticDesignConstruction" + } + }, + { + "type": "node", + "id": 10821996423, + "lat": 44.9542657, + "lon": -0.6294706, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVlink", + "capacity": "2", + "operator": "AtlanticDesignConstruction" + } + }, + { + "type": "node", + "id": 10821996424, + "lat": 44.9542204, + "lon": -0.6294817, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVlink", + "capacity": "2", + "operator": "AtlanticDesignConstruction" + } + }, + { + "type": "node", + "id": 10822342588, + "lat": 45.5720076, + "lon": 5.920896, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10822433452, + "lat": 47.2244023, + "lon": -1.5307444, + "tags": { + "access": "private", + "amenity": "charging_station", + "bicycle": "no", + "bus": "no", + "capacity": "1", + "hgv": "no", + "image": "https://i.imgur.com/T0GZ6Z8.jpg", + "motorcar": "yes", + "operator": "Wallbox", + "parking:fee": "no", + "scooter": "no" + } + }, + { + "type": "node", + "id": 10822489609, + "lat": 43.5765371, + "lon": 1.3723586, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Ingeteam", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10822489610, + "lat": 43.5744924, + "lon": 1.3755493, + "tags": { + "access": "private", + "amenity": "charging_station", + "brand": "Ingeteam", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10822631366, + "lat": 47.4872264, + "lon": 6.8407299, + "tags": { + "access": "customers", + "addr:city": "Audincourt", + "addr:housenumber": "4", + "addr:street": "Boulevard Moïse Foglia", + "amenity": "charging_station", + "brand": "Atlante", + "capacity": "2", + "fee": "yes", + "socket:type2_combo": "2", + "socket:type2_combo:output": "150kW" + } + }, + { + "type": "node", + "id": 10822648184, + "lat": 49.1067192, + "lon": 6.1667328, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Technolia", + "capacity": "2", + "network": "Indigo", + "operator": "Indigo" + } + }, + { + "type": "node", + "id": 10822806968, + "lat": 46.5481821, + "lon": 0.2899518, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Vinci Autoroutes", + "ref": "05-BRVE-0001", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10822806973, + "lat": 46.5481565, + "lon": 0.2900242, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Vinci Autoroutes", + "ref": "05-BRVE-0078", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10822901734, + "lat": 43.2387685, + "lon": 3.1121792, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10824051364, + "lat": 44.95365, + "lon": -0.6284532, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 10824051392, + "lat": 44.9536453, + "lon": -0.628736, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 10824615354, + "lat": 44.9534935, + "lon": -0.6267979, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Énergie E.Leclerc" + } + }, + { + "type": "node", + "id": 10824615355, + "lat": 44.9535583, + "lon": -0.626805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Énergie E.Leclerc" + } + }, + { + "type": "node", + "id": 10826298284, + "lat": 42.4731802, + "lon": 2.6716365, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10826405617, + "lat": 50.4416724, + "lon": 3.4309584, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10826405618, + "lat": 50.4415463, + "lon": 3.4309993, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10826772698, + "lat": 45.7373116, + "lon": 4.8520859, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY807A", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10826772699, + "lat": 45.7373079, + "lon": 4.8520035, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "payment:app": "yes", + "ref": "LY807B", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10827361342, + "lat": 43.1792931, + "lon": 3.0151976, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262003", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10827435146, + "lat": 48.7293235, + "lon": -0.677791, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10827629706, + "lat": 44.6972925, + "lon": 5.2000664, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Eborn", + "survey:date": "2023-04-20" + } + }, + { + "type": "node", + "id": 10828149538, + "lat": 50.4325593, + "lon": 3.4405828, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10829106347, + "lat": 45.7570238, + "lon": 4.8517775, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Paul Bert - Garibaldi", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY314D;MAT-008979", + "ref:EU:EVSE": "FR*GLY*PLYON8441", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10829106348, + "lat": 45.7570215, + "lon": 4.8517232, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Paul Bert - Garibaldi", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY314C;MAT-008978", + "ref:EU:EVSE": "FR*GLY*PLYON8431", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10829106349, + "lat": 45.757019, + "lon": 4.8516648, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 3 | Paul Bert - Garibaldi", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY314B;MAT-008977", + "ref:EU:EVSE": "FR*GLY*PLYON8421", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10829163248, + "lat": 45.74925, + "lon": 1.4318101, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:contactless": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "MObiVE AC", + "opening_hours": "24/7", + "operator": "MobiVE", + "payment:cash": "no", + "payment:credit_cards": "yes", + "phone": "+33969324747", + "ref:EU:EVSE": "FR*S87*PMB871912", + "socket:domestic": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10829179778, + "lat": 50.7545779, + "lon": 2.243781, + "tags": { + "access": "yes", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10829757471, + "lat": 48.9528834, + "lon": 7.6335394, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10829759844, + "lat": 48.0794078, + "lon": -0.8015015, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "no", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10830378188, + "lat": 44.7559284, + "lon": 5.3683272, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10834019695, + "lat": 48.4720312, + "lon": -4.2035877, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Ouest Charge", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S29*PSD2920912", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10834257117, + "lat": 44.9523977, + "lon": -0.624546, + "tags": { + "amenity": "charging_station", + "brand": "EVlink", + "operator": "AtlanticDesignConstruction", + "website": "https://www.adcf.fr" + } + }, + { + "type": "node", + "id": 10834281541, + "lat": 43.6138969, + "lon": 1.4379073, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10834281558, + "lat": 43.6107702, + "lon": 1.4422428, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 10836620989, + "lat": 48.7085534, + "lon": 2.1744871, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "IBM" + } + }, + { + "type": "node", + "id": 10836620990, + "lat": 48.7088476, + "lon": 2.1753858, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "IBM" + } + }, + { + "type": "node", + "id": 10836735566, + "lat": 42.7018083, + "lon": 3.0370742, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "Mo-Su 00:00-23:59", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805028951", + "ref:EU:EVSE": "FR*S66*P66037003", + "socket:chademo": "4", + "socket:type2": "4", + "socket:type2_combo": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10837247254, + "lat": 45.0999619, + "lon": 0.4448098, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10838120054, + "lat": 45.8770479, + "lon": 6.0724314, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "operator": "Total Energies", + "socket:chademo": "2", + "socket:type1_combo": "2", + "socket:type2": "2", + "socket:unknown": "2" + } + }, + { + "type": "node", + "id": 10838129122, + "lat": 45.7545019, + "lon": 4.8504424, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon | Rue d'Arménie", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY307B;MAT-008850", + "ref:EU:EVSE": "FR*GLY*PLYON3022", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10838130455, + "lat": 45.7529097, + "lon": 4.8548459, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon | Place Bir-Hakeim", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY308B;MAT-008856", + "ref:EU:EVSE": "FR*GLY*PLYON3122", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10839548805, + "lat": 43.8079343, + "lon": 4.3635595, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "20", + "name": "Tesla Supercharger", + "survey:date": "2023-04-25" + } + }, + { + "type": "node", + "id": 10841617753, + "lat": 43.3360733, + "lon": 3.2865643, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10846096781, + "lat": 42.4416564, + "lon": 3.1654673, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S66*P66048001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10846342318, + "lat": 43.2954873, + "lon": 5.38743, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@evzen.com", + "fee": "yes", + "motorcar": "yes", + "network": "larecharge", + "opening_hours": "24/7", + "operator": "evzen (SMEG Développement)", + "owner": "Aix-Marseille Provence Métropole", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*M13*PYACDJSIY62", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10846692381, + "lat": 48.2273159, + "lon": 4.7196922, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Borne de recharge", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10846771733, + "lat": 49.0113378, + "lon": 1.9023761, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10846963633, + "lat": 47.5543754, + "lon": -1.7049395, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SYDELA", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "SYDELA", + "payment:credit_cards": "no", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*S44*P44214A", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10848252863, + "lat": 46.6531641, + "lon": -1.4395948, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Schneider Electric", + "capacity": "2", + "check_date": "2023-04-28", + "fee": "no", + "manufacturer": "Schneider Electric", + "motorcar": "yes", + "network": "SAUR", + "note": "EVlink parking - borne sur pied - 2 prises T2S - 22kW\nSchneider Electric", + "opening_hours": "24/7", + "operator": "SAUR", + "owner": "SAUR", + "start_date": "2023-03-15", + "website": "https://www.go2se.com/ref=EVF2S22P44/sn=3N2241522005002" + } + }, + { + "type": "node", + "id": 10852775544, + "lat": 48.6082921, + "lon": 6.1620919, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "brand": "Stations-e", + "fee": "no", + "motorcar": "yes", + "opening_hours": "Mo-Su 06:00-23:00", + "socket:cee_red_32a": "1" + } + }, + { + "type": "node", + "id": 10852886518, + "lat": 47.8710608, + "lon": -4.102157, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Ouest Charge", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S29*PSD29712", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10852895052, + "lat": 48.8598462, + "lon": 2.3610757, + "tags": { + "amenity": "charging_station", + "brand": "ubeeqo" + } + }, + { + "type": "node", + "id": 10853499233, + "lat": 47.3759236, + "lon": 0.7166944, + "tags": { + "amenity": "charging_station", + "socket:chademo": "1", + "socket:type1_combo": "1" + } + }, + { + "type": "node", + "id": 10857627738, + "lat": 45.7792385, + "lon": 4.8597301, + "tags": { + "advertising": "totem", + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "motor_vehicle": "yes", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "VIL02A", + "visibility": "street" + } + }, + { + "type": "node", + "id": 10858086368, + "lat": 44.9096402, + "lon": 4.8815269, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Valence", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PYCDY4DXWFE", + "socket:type2": "4", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10858089747, + "lat": 48.2507461, + "lon": 7.4374169, + "tags": { + "amenity": "charging_station", + "brand": "B&B Hotels", + "brand:wikidata": "Q794939", + "brand:wikipedia": "fr:B&B Hotels", + "capacity": "1", + "fixme": "A repositionner à la MAJ de la vue satelite", + "motorcar": "destination", + "operator": "B&B" + } + }, + { + "type": "node", + "id": 10858089748, + "lat": 48.2507229, + "lon": 7.4374001, + "tags": { + "amenity": "charging_station", + "brand": "B&B Hotels", + "brand:wikidata": "Q794939", + "brand:wikipedia": "fr:B&B Hotels", + "capacity": "1", + "fixme": "A repositionner à la MAJ de la vue satelite", + "motorcar": "destination", + "operator": "B&B" + } + }, + { + "type": "node", + "id": 10858218735, + "lat": 48.2827456, + "lon": 6.9457292, + "tags": { + "amenity": "charging_station", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10858218736, + "lat": 48.2827205, + "lon": 6.9457185, + "tags": { + "amenity": "charging_station", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10858728873, + "lat": 50.5661855, + "lon": 3.2176144, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "payment:debit_cards": "yes", + "socket:type2_cable:current": "32", + "socket:type2_cable:output": "7kW", + "socket:typee:current": "16", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 10858728874, + "lat": 50.5661679, + "lon": 3.2176796, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Freshmile", + "payment:debit_cards": "yes", + "socket:type2_cable:current": "32", + "socket:type2_cable:output": "7kW", + "socket:typee:current": "16", + "socket:typee:output": "3kW" + } + }, + { + "type": "node", + "id": 10860536483, + "lat": 43.8287849, + "lon": 5.4038596, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10860733429, + "lat": 44.8709731, + "lon": 1.8035778, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10861853876, + "lat": 45.7527866, + "lon": 4.8380546, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 7 | Quai Claude Bernard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY705D;MAT-009031", + "ref:EU:EVSE": "FR*GLY*PLYON705D;;FR*GLY*PLYON10241", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10861853877, + "lat": 45.7527905, + "lon": 4.8380457, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "name": "IZIVIA Grand Lyon | Lyon 7 | Quai Claude Bernard", + "network": "GRAND LYON", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "IZIVIA FMET 1", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "LY705C;MAT-009030", + "ref:EU:EVSE": "FR*GLY*PLYON705C;FR*GLY*PLYON10231", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10861981030, + "lat": 48.9705968, + "lon": 3.0634003, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "12", + "comment": "More accurate position needed", + "fee": "yes", + "name": "Fastned Aire de Ussy sur Marne", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10862013178, + "lat": 48.9646074, + "lon": 3.0534748, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "12", + "comment": "More accurate position needed", + "fee": "yes", + "name": "Fastned Aire de Changis sur Marne", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10862101997, + "lat": 48.2827169, + "lon": 6.9457225, + "tags": { + "amenity": "charging_station", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10862101998, + "lat": 48.2827426, + "lon": 6.9457335, + "tags": { + "amenity": "charging_station", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10862188870, + "lat": 49.36023, + "lon": 0.8603963, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "4", + "comment": "More accurate position needed", + "fee": "yes", + "name": "Fastned Aire du Bosgouet Sud", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10862199371, + "lat": 48.9923341, + "lon": 1.6330465, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "12", + "comment": "More accurate position needed", + "fee": "yes", + "name": "Fastned Aire de Rosiny Sud", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10862210363, + "lat": 49.8548905, + "lon": 2.5235868, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "12", + "comment": "More accurate position needed", + "fee": "yes", + "name": "Fastned Aire de Villers Betonneux", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10862226176, + "lat": 50.26162, + "lon": 2.8650072, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Fastned", + "capacity": "12", + "comment": "More accurate position needed", + "fee": "yes", + "name": "Fastned Aire de Wancourt Est", + "opening_hours": "24/7", + "operator": "Fastned", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 10862400072, + "lat": 43.2571848, + "lon": 3.2864342, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "CAMPING", + "opening_hours": "24/7", + "operator": "ies Beyond Charging DriveEco", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PSIBLU344102", + "socket:schuko": "1", + "socket:type2": "2", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10862622205, + "lat": 48.0434955, + "lon": 7.1583079, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 10863606769, + "lat": 45.7955787, + "lon": 3.1687146, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10864104994, + "lat": 46.9704796, + "lon": -1.4350817, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "capacity": "3", + "manufacturer": "Delta", + "model": "UFC200", + "motorcar": "yes", + "opening_date": "2023-07", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type1_combo": "1", + "socket:type1_combo:output": "100", + "socket:type2": "1", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 10864931980, + "lat": 46.3143331, + "lon": 3.3994469, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10865056918, + "lat": 48.7398341, + "lon": 0.1459759, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10865222798, + "lat": 49.5114846, + "lon": 0.5315274, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "fee": "no" + } + }, + { + "type": "node", + "id": 10865222799, + "lat": 49.5115209, + "lon": 0.5315271, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "1", + "fee": "no" + } + }, + { + "type": "node", + "id": 10865276387, + "lat": 42.6590583, + "lon": 2.9520191, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10865672549, + "lat": 46.7311761, + "lon": 0.4398736, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10867684127, + "lat": 43.5321633, + "lon": 1.4017127, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10869079215, + "lat": 49.7098468, + "lon": 4.129095, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10869257369, + "lat": 44.1274167, + "lon": 1.2413863, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Lafrançaise, Gustave Bosc", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "SDE 82", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:debit_cards": "yes", + "ref:EU:EVSE": "FRS82PLAFRANCAISE", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Etalab / IRVE - 2023-05-03;IGN / BD ORTHO® - 2022;survey", + "start_date": "2017-05-11", + "survey:date": "2023-04-11", + "voltage": "230", + "website": "https://charge.freshmile.com/location/Lafrancaise" + } + }, + { + "type": "node", + "id": 10869469990, + "lat": 44.1196662, + "lon": 1.1214745, + "tags": { + "addr:city": "Moissac", + "addr:country": "FR", + "addr:housenumber": "805", + "addr:postcode": "82200", + "addr:street": "Route de La Mégère", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "no", + "fixme": "Exact location not found and point placed on supposed area. Survey is needed.", + "motorcar": "yes", + "name": "Power Dot - Intermarché - Moissac", + "opening_hours": "24/7", + "operator": "Power dot", + "socket:chademo": "2", + "socket:chademo:output": "84 kW", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "250 kW" + } + }, + { + "type": "node", + "id": 10869469991, + "lat": 44.1201161, + "lon": 1.1196067, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Power Dot - Parc commercial du Luc", + "opening_hours": "24/7", + "operator": "Power Dot", + "ref:EU:EVSE": "FRPD1PPCLMSC", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "60 kW", + "source": "Etalab / IRVE - 2023-04-27;survey", + "survey:date": "2023-01-21" + } + }, + { + "type": "node", + "id": 10869469992, + "lat": 44.120047, + "lon": 1.1195815, + "tags": { + "amenity": "charging_station", + "authentication:nfc": "yes", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "name": "Power Dot - Parc commercial du Luc", + "opening_hours": "24/7", + "operator": "Power Dot", + "ref:EU:EVSE": "FRPD1PPCLMSC", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "60 kW", + "source": "Etalab / IRVE - 2023-04-27;survey", + "survey:date": "2023-01-21" + } + }, + { + "type": "node", + "id": 10869575908, + "lat": 48.8652408, + "lon": 2.3435551, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10870309966, + "lat": 43.2532654, + "lon": 3.2916233, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2:output": "7.4" + } + }, + { + "type": "node", + "id": 10873467625, + "lat": 44.2877755, + "lon": 4.7519192, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10873467626, + "lat": 44.2877892, + "lon": 4.7519521, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10873574405, + "lat": 44.5495808, + "lon": -0.8681077, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "no", + "name": "Borne de recharge vélo électrique", + "survey:date": "2023-05-06" + } + }, + { + "type": "node", + "id": 10873939490, + "lat": 48.8268885, + "lon": 1.9489366, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "operator": "Sey ma borne" + } + }, + { + "type": "node", + "id": 10875128392, + "lat": 47.4223102, + "lon": 5.1718629, + "tags": { + "amenity": "charging_station", + "brand": "Total Énergie", + "fee": "yes", + "operator": "Total Énergie" + } + }, + { + "type": "node", + "id": 10876207216, + "lat": 43.3978543, + "lon": 1.7014895, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10876207217, + "lat": 43.3978362, + "lon": 1.7015103, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10876207218, + "lat": 43.3985232, + "lon": 1.7007868, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10876259123, + "lat": 44.1757955, + "lon": 1.6160269, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Septfonds, Marcel Lacassagne", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "SDE 82", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:debit_cards": "yes", + "ref:EU:EVSE": "FRS82PSEPTFONDS", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type3c": "1", + "socket:type3c:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "source": "Etalab / IRVE - 2023-04-07;IGN / BD ORTHO® - 2022;survey", + "start_date": "2017-05-11", + "survey:date": "2023-05-07", + "website": "https://charge.freshmile.com/location/septfonds" + } + }, + { + "type": "node", + "id": 10876273757, + "lat": 45.5916483, + "lon": 5.2472477, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "bicycle": "yes", + "capacity": "9", + "fee": "no", + "motorcar": "no", + "motorcycle": "no", + "scooter": "no", + "socket:typee": "9", + "truck": "no" + } + }, + { + "type": "node", + "id": 10876456571, + "lat": 42.8096215, + "lon": 2.5910166, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805028619", + "ref:EU:EVSE": "FR*S66*P66107001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10877344141, + "lat": 47.3281144, + "lon": -1.7920382, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "name": "SYDEGO", + "network": "SYDELA" + } + }, + { + "type": "node", + "id": 10877621006, + "lat": 48.7798378, + "lon": 6.1455692, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes", + "operator": "Conseil départemental de Meurthe-et-Moselle" + } + }, + { + "type": "node", + "id": 10878486702, + "lat": 43.4608422, + "lon": 3.6864587, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34024001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10878618448, + "lat": 43.4468206, + "lon": 3.6585126, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34039001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10878799744, + "lat": 48.052188, + "lon": 0.1672442, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10879027391, + "lat": 50.0634238, + "lon": 1.3879587, + "tags": { + "amenity": "charging_station", + "brand": "IRVE80", + "operator": "freshmile", + "ref": "HDXP1" + } + }, + { + "type": "node", + "id": 10879027392, + "lat": 50.0634341, + "lon": 1.3880016, + "tags": { + "amenity": "charging_station", + "brand": "IRVE80", + "operator": "freshmile", + "ref": "HRHW2" + } + }, + { + "type": "node", + "id": 10879027393, + "lat": 50.0634453, + "lon": 1.3880485, + "tags": { + "amenity": "charging_station", + "brand": "IRVE80", + "operator": "freshmile", + "ref": "HRHW1" + } + }, + { + "type": "node", + "id": 10879619372, + "lat": 50.6060485, + "lon": 3.1644158, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10879619373, + "lat": 50.6059068, + "lon": 3.1644458, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10879619374, + "lat": 50.6060026, + "lon": 3.1644256, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10879619375, + "lat": 50.6059476, + "lon": 3.1644372, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10880494945, + "lat": 44.2185938, + "lon": 5.1411204, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10881042963, + "lat": 46.9619423, + "lon": 4.3109952, + "tags": { + "amenity": "charging_station", + "man_made": "charge_point", + "name": "Lidl Autun", + "ref": "ZKSV1;ZKSV2" + } + }, + { + "type": "node", + "id": 10883137909, + "lat": 43.1560905, + "lon": 2.9665413, + "tags": { + "amenity": "charging_station", + "amperage": "32", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262010", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "230" + } + }, + { + "type": "node", + "id": 10883679333, + "lat": 43.1526612, + "lon": 2.9815477, + "tags": { + "amenity": "charging_station", + "amperage": "750", + "authentication:app": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2_combo": "4", + "voltage": "400" + } + }, + { + "type": "node", + "id": 10883679334, + "lat": 43.164163, + "lon": 2.9868553, + "tags": { + "amenity": "charging_station", + "amperage": "600", + "authentication:app": "yes", + "authentication:nfc": "yes", + "capacity": "5", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "BE TROM", + "payment:cash": "no", + "payment:credit_cards": "yes", + "payment:cryptocurrencies": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*G38*P11262001", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "5", + "source": "data.gouv.fr:Etalab - 05/2022", + "voltage": "400" + } + }, + { + "type": "node", + "id": 10883679344, + "lat": 43.1716917, + "lon": 2.9919298, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Edenauto Premium BMW", + "opening_hours": "Mo-Sa 08:00-12:00, Mo-Fr 14:00-19:00, Sa 14:00-18:00", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PEDENAUTOBMW111001", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10884230596, + "lat": 45.945756, + "lon": -0.5402646, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "ref": "570.4062-SW", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 10884282074, + "lat": 48.4193441, + "lon": 0.0773184, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10884345606, + "lat": 43.1823527, + "lon": 2.9791338, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262008", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10884352430, + "lat": 45.7429939, + "lon": 4.8758952, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "ref": "LY808" + } + }, + { + "type": "node", + "id": 10884352431, + "lat": 45.7429774, + "lon": 4.8759595, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "ref": "LY808" + } + }, + { + "type": "node", + "id": 10884354341, + "lat": 45.7419824, + "lon": 4.8603711, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "IZIVIA", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "ref": "LY806" + } + }, + { + "type": "node", + "id": 10884354342, + "lat": 45.7420395, + "lon": 4.8603341, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "IZIVIA", + "capacity": "2", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Izivia", + "ref": "LY806" + } + }, + { + "type": "node", + "id": 10885237427, + "lat": 43.1809679, + "lon": 3.029222, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "brand": "ZEborne", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:chademo": "3", + "socket:type2": "2", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 10885237429, + "lat": 43.1864145, + "lon": 3.0026825, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Rent A Car", + "socket:schuko": "1", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10885237430, + "lat": 43.1539013, + "lon": 2.9791832, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "capacity": "4", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Ford", + "opening_hours": "Mo 08:00-12:00,14:00-18:30; Tu 08:00-12:00,14:00-19:00; We 08:00-12:00,14:00-19:00; Th 08:00-12:00,14:00-19:00; Fr 08:00-12:00,14:00-18:30; Sa 09:00-12:00,14:00-18:00", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMAURINFORD111001", + "scooter": "yes", + "socket:schuko": "1", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10885237432, + "lat": 43.1594049, + "lon": 2.9831547, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "ML Autos", + "opening_hours": "Mo-Fr 09:00-18:30; Sa 09:00-17:00", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMLHYUNDAI111001", + "socket:type2": "1", + "socket:type2_cable": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10885237433, + "lat": 43.1886865, + "lon": 2.9284717, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11255001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10885237434, + "lat": 43.1862522, + "lon": 3.0091612, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262004", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10885700403, + "lat": 43.0577778, + "lon": 2.9219444, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11295001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10885700404, + "lat": 43.0291374, + "lon": 2.979414, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11379001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10885700605, + "lat": 42.9743365, + "lon": 2.9948806, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11188001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10885700606, + "lat": 43.0142404, + "lon": 3.0510445, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11266001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10885763957, + "lat": 43.1152731, + "lon": 3.1068786, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "4", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805028658", + "ref:EU:EVSE": "FR*S11*P11170004", + "scooter": "yes", + "socket:schuko": "4", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10885895733, + "lat": 48.9075809, + "lon": 2.0210755, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10885913782, + "lat": 43.6884894, + "lon": 3.3541614, + "tags": { + "amenity": "charging_station", + "amenity:wikipedia": "en:Tesla Supercharger", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "brand:wikipedia": "en:Tesla Supercharger", + "capacity": "16", + "fee": "yes", + "name": "Le Bosc Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "socket:tesla_supercharger_ccs": "16", + "socket:tesla_supercharger_ccs:output": "250 kW", + "website": "https://www.tesla.com/findus/location/supercharger/331768" + } + }, + { + "type": "node", + "id": 10886170288, + "lat": 43.1773545, + "lon": 3.1894902, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11145002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886170289, + "lat": 43.1602786, + "lon": 3.1636249, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11262001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886170290, + "lat": 43.2157025, + "lon": 3.2320798, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11145003", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886244925, + "lat": 43.1812318, + "lon": 2.8381872, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11267001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886244926, + "lat": 43.2477439, + "lon": 2.858879, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11405001", + "scooter": "yes", + "socket:chademo": "2", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886244927, + "lat": 43.1641609, + "lon": 2.8685854, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11040001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886265270, + "lat": 43.2643433, + "lon": 2.9066567, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11360001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886265271, + "lat": 43.269167, + "lon": 2.876667, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11164001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10886399081, + "lat": 48.8091716, + "lon": -0.5002995, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10887667631, + "lat": 45.2737042, + "lon": 5.8866898, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "no", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10887667632, + "lat": 45.2748431, + "lon": 5.884256, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_combo": "2", + "socket:type2_combo:output": "60 kW" + } + }, + { + "type": "node", + "id": 10887667633, + "lat": 45.273275, + "lon": 5.8835056, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW" + } + }, + { + "type": "node", + "id": 10887732245, + "lat": 43.162907, + "lon": 2.8918542, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Camping Figurotta", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PT7R6DBLAOK", + "socket:type2": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10887732246, + "lat": 43.107574, + "lon": 3.0987262, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "6", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Office du tourisme de Gruissan", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PBC9AMA977O", + "scooter": "yes", + "socket:chademo": "1", + "socket:schuko": "4", + "socket:type2": "4", + "socket:type2_cable": "1", + "socket:type2_combo": "1", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10887732247, + "lat": 43.1179947, + "lon": 3.1058154, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR22", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PTIGUJ9PDPA", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10887732248, + "lat": 43.1794603, + "lon": 3.0304092, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Fiat Languedoc Roussillon", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PPUMXEJQLLD", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10887732249, + "lat": 43.1857486, + "lon": 2.9809758, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Narbonne", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*LE2*PQ6MEVWHEHS", + "socket:schuko": "4", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10888578453, + "lat": 43.3127381, + "lon": 2.871947, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11041001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10888602912, + "lat": 43.3300209, + "lon": 3.0451357, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805024465", + "ref:EU:EVSE": "FR*S34*P34052001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10888606035, + "lat": 43.1850289, + "lon": 2.590352, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11122001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10888612005, + "lat": 43.297477, + "lon": 2.6796217, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11280001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10889421363, + "lat": 44.3925851, + "lon": 2.6014661, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "capacity": "1", + "manufacturer": "Mennekes", + "model": "AMTRON", + "motorcar": "yes", + "network": "Enerstock", + "owner": "E. Leclerc", + "parking:fee": "no", + "ref": "7;8", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "support": "wall_mounted" + } + }, + { + "type": "node", + "id": 10889421376, + "lat": 44.3925303, + "lon": 2.6015483, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "capacity": "2", + "manufacturer": "Mennekes", + "model": "AMEDIO", + "motorcar": "yes", + "network": "Enerstock", + "owner": "E. Leclerc", + "parking:fee": "no", + "ref": "1;2", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10889421377, + "lat": 44.3925499, + "lon": 2.6015241, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "capacity": "2", + "manufacturer": "Mennekes", + "model": "AMEDIO", + "motorcar": "yes", + "network": "Enerstock", + "owner": "E. Leclerc", + "parking:fee": "no", + "ref": "3;4", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10889421378, + "lat": 44.3925676, + "lon": 2.6015013, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "capacity": "2", + "manufacturer": "Mennekes", + "model": "AMEDIO", + "motorcar": "yes", + "network": "Enerstock", + "owner": "E. Leclerc", + "parking:fee": "no", + "ref": "5;6", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10889421379, + "lat": 44.3925835, + "lon": 2.6014745, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "capacity": "2", + "manufacturer": "Mennekes", + "model": "AMEDIO", + "motorcar": "yes", + "network": "Enerstock", + "owner": "E. Leclerc", + "parking:fee": "no", + "ref": "7;8", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10889421380, + "lat": 44.3926036, + "lon": 2.6014443, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:app": "yes", + "bicycle": "no", + "capacity": "2", + "manufacturer": "Mennekes", + "model": "AMEDIO", + "motorcar": "yes", + "network": "Enerstock", + "owner": "E. Leclerc", + "parking:fee": "no", + "ref": "10", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10889840022, + "lat": 45.9503093, + "lon": -0.5022364, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "operator": "Lidl", + "ref": "FR*LDL*E00002823;FR*LDL*E00002824;FR*LDL*E00002825", + "socket:chademo": "1", + "socket:chademo:current": "143", + "socket:chademo:output": "50 kW", + "socket:chademo:voltage": "400", + "socket:type2_cable": "1", + "socket:type2_cable:current": "143", + "socket:type2_cable:output": "43 kW", + "socket:type2_cable:voltage": "400", + "socket:type2_combo": "1", + "socket:type2_combo:current": "143", + "socket:type2_combo:output": "50 kW", + "socket:type2_combo:voltage": "400", + "source": "survey" + } + }, + { + "type": "node", + "id": 10890223005, + "lat": 47.6687404, + "lon": 1.5256408, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-05-12" + } + }, + { + "type": "node", + "id": 10891656982, + "lat": 47.5372547, + "lon": 4.4613688, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10891656983, + "lat": 47.542965, + "lon": 4.4594478, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10891902541, + "lat": 46.9012338, + "lon": 6.3307398, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Driveco", + "capacity": "2", + "parking:fee": "no", + "serial_number": "11464", + "socket:type2": "2", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10891902542, + "lat": 46.9011278, + "lon": 6.3311569, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Driveco", + "capacity": "2", + "parking:fee": "no", + "serial_number": "11463", + "socket:type2": "2", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10893942247, + "lat": 45.740944, + "lon": 3.1395876, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10894521212, + "lat": 45.8969263, + "lon": 6.111172, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "E Born", + "opening_hours": "24/7", + "operator": "eborn" + } + }, + { + "type": "node", + "id": 10894773238, + "lat": 42.7752532, + "lon": 3.0155767, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Lidl DR22", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PUB80BLL4HU", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey 2023" + } + }, + { + "type": "node", + "id": 10894983507, + "lat": 42.7783816, + "lon": 3.0201687, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10894983552, + "lat": 42.775076, + "lon": 3.0190516, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10894983553, + "lat": 42.7750455, + "lon": 3.0189939, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10895446297, + "lat": 48.806023, + "lon": 2.0687422, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "note": "7 kVa", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "Grand Paris Aménagement", + "payment:contactless": "yes", + "ref:EU:EVSE": "FR*V04*P78545*001", + "socket:type2": "1", + "socket:type3": "1", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10898896789, + "lat": 47.7135874, + "lon": 1.9414032, + "tags": { + "amenity": "charging_station", + "fixme": "à préciser (peut-être en cours d'installation)" + } + }, + { + "type": "node", + "id": 10899029126, + "lat": 46.3862142, + "lon": 5.8647532, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 10899029127, + "lat": 46.390638, + "lon": 5.8638615, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 10899729193, + "lat": 43.4024549, + "lon": 3.6998974, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34301001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10899729195, + "lat": 43.4128782, + "lon": 3.6988547, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34301006", + "socket:chademo": "6", + "socket:type2": "6", + "socket:type2_combo": "6", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10899991340, + "lat": 48.9622348, + "lon": 1.8025658, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10900312401, + "lat": 45.1302272, + "lon": 1.2986036, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Power Dot" + } + }, + { + "type": "node", + "id": 10901333703, + "lat": 45.4858358, + "lon": -1.1180032, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10901880744, + "lat": 47.8658095, + "lon": 4.5730879, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "charge": "1.5 EUR/H", + "fee": "yes", + "network": "izivia", + "opening_hours": "24/7", + "operator": "izivia", + "socket:type2": "1", + "socket:type2:output": "7 kW", + "socket:typee": "1", + "socket:typee:output": "3 kW", + "website": "https://izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-ch%C3%A2tillon-sur-seine/chauss%C3%A9e-de-l-europe/62593310b8b05243203b97f9" + } + }, + { + "type": "node", + "id": 10901880745, + "lat": 47.8658514, + "lon": 4.5731127, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "1.5 EUR/H", + "fee": "yes", + "network": "izivia", + "opening_hours": "24/7", + "operator": "izivia", + "socket:chademo": "1", + "socket:chademo:output": "24kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24kW", + "website": "https://izivia.com/carte-bornes-electriques-izivia/bornes-de-recharge-ch%C3%A2tillon-sur-seine/chauss%C3%A9e-de-l-europe/62593310b8b05243203b97f9" + } + }, + { + "type": "node", + "id": 10902682730, + "lat": 43.4865547, + "lon": 3.6664947, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34213001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10902682731, + "lat": 43.5001835, + "lon": 3.6021872, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34341001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10902692950, + "lat": 43.4292105, + "lon": 3.6089866, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", + "operator": "Freshmile SAS", + "owner": "Renault", + "payment:credit_cards": "yes", + "phone": "+33 3 69 24 67 32", + "ref:EU:EVSE": "FR*FR1*PERYMURP2DU", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10902730574, + "lat": 43.4227233, + "lon": 3.6049025, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33 8 05 02 14 80", + "ref:EU:EVSE": "FR*S34*P34157002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10902850570, + "lat": 43.0934435, + "lon": 0.7437082, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10902927415, + "lat": 43.7886207, + "lon": 4.0888895, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 10902927416, + "lat": 43.7885684, + "lon": 4.0889774, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 10903125681, + "lat": 48.193283, + "lon": 6.4598671, + "tags": { + "access": "customers", + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "operator": "Modulo" + } + }, + { + "type": "node", + "id": 10903256381, + "lat": 42.971722, + "lon": 1.607213, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Révéo" + } + }, + { + "type": "node", + "id": 10903401746, + "lat": 43.3136155, + "lon": 3.478462, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34003003", + "socket:chademo": "2", + "socket:type2": "3", + "socket:type2_combo": "2", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10904508579, + "lat": 43.8192598, + "lon": 1.7223063, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Révéo", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Rabastens", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "ref": "FR*S81*E81220*002*1;FR*S81*E81220*002*2", + "ref:EU:EVSE": "FR*S81*P81220*002", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 10904508580, + "lat": 43.8193265, + "lon": 1.7223244, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "brand": "Révéo", + "capacity": "2", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Rabastens", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "ref": "FR*S81*E81220*001*1;FR*S81*E81220*001*2", + "ref:EU:EVSE": "FR*S81*P81220*001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "website": "https://reveocharge.com" + } + }, + { + "type": "node", + "id": 10905565351, + "lat": 45.4394385, + "lon": 4.3964799, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10905609626, + "lat": 43.4258242, + "lon": 3.727296, + "tags": { + "access": "yes", + "amenity": "charging_station", + "email": "support@alizecharge.fr", + "fee": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34923001", + "socket:type2": "4", + "socket:typee": "4", + "source": "ata.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10905609630, + "lat": 43.4427471, + "lon": 3.7547446, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34108002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10905609634, + "lat": 43.4206513, + "lon": 3.7081219, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34301005", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10905609635, + "lat": 43.3736606, + "lon": 3.4285157, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34031002", + "socket:chademo": "3", + "socket:type2": "3", + "socket:type2_combo": "3", + "socket:typee": "3", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10905914420, + "lat": 48.7186203, + "lon": 1.3704586, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Power Dot", + "capacity": "3", + "charging_station:output": "50 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Vernouillet", + "opening_hours": "24/7", + "operator": "Power Dot", + "operator:type": "private", + "parking": "surface", + "ref": "imc_ver_kpc5002", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "surface": "asphalt" + } + }, + { + "type": "node", + "id": 10905914421, + "lat": 48.7186454, + "lon": 1.3704763, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Power Dot", + "capacity": "3", + "charging_station:output": "50 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Vernouillet", + "opening_hours": "24/7", + "operator": "Power Dot", + "operator:type": "private", + "parking": "surface", + "ref": "imc_ver_kpc5003", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "surface": "asphalt" + } + }, + { + "type": "node", + "id": 10905914422, + "lat": 48.7186027, + "lon": 1.3704947, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Power Dot", + "capacity": "3", + "charging_station:output": "50 kW", + "fee": "yes", + "motorcar": "yes", + "name": "Vernouillet", + "opening_hours": "24/7", + "operator": "Power Dot", + "operator:type": "private", + "parking": "surface", + "ref": "imc_ver_kpc5001", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "surface": "asphalt" + } + }, + { + "type": "node", + "id": 10905948428, + "lat": 48.8629525, + "lon": 2.5755432, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10907838391, + "lat": 43.2899634, + "lon": 5.3715617, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "operator": "ENGIE" + } + }, + { + "type": "node", + "id": 10909780772, + "lat": 43.1762082, + "lon": 0.2401853, + "tags": { + "addr:city": "Tournay", + "addr:housenumber": "29", + "addr:postcode": "65190", + "addr:street": "avenue de Bagnères", + "amenity": "charging_station", + "brand": "Blueberry", + "capacity": "4", + "charging_station:output": "100 kW", + "check_date": "2023-05-18", + "covered": "no", + "description:payment": "badge", + "description:payment:en": "ID badge (swipe card)", + "email": "support@powerdot.fr", + "fee": "yes", + "name": "Station de recharge pour véhicule électrique (borne/chargeur pour voiture/automobile electrique)", + "operator": "Powerdot", + "payment:app": "yes", + "phone": "+33 1 76 36 05 25", + "socket:type2:output": "100 kW", + "source": "https://www.geoportail.gouv.fr/carte" + } + }, + { + "type": "node", + "id": 10910932805, + "lat": 50.9849534, + "lon": 2.1246391, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "survey:date": "2023-05-08" + } + }, + { + "type": "node", + "id": 10911315701, + "lat": 43.2709819, + "lon": 5.3632206, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10911326814, + "lat": 43.9012555, + "lon": -0.4817854, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "covered": "no", + "description": "Chargement des véhicules, trottinettes, deux-roues\n1h gratuite avec la carte fidélité ou carte pass carrefour", + "fee": "no", + "operator": "Carrefour" + } + }, + { + "type": "node", + "id": 10911473744, + "lat": 43.6267139, + "lon": 6.2200005, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "AUPS_Parking de la Colle", + "opening_hours": "24/7", + "operator": "Réseau eborn", + "owner": "Mouv Élec Var", + "ref:EU:EVSE": "FR*S83*P83007*A", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 10912722784, + "lat": 45.7372121, + "lon": 4.8377796, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Izivia Grand Lyon (Groupe EDF)" + } + }, + { + "type": "node", + "id": 10912722785, + "lat": 45.7465312, + "lon": 4.8244692, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10913830782, + "lat": 48.806965, + "lon": 2.5097624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "4.5 EUR/heure", + "fee": "yes", + "socket:type2:output": "22 kw", + "socket:typee:output": "3 kw" + } + }, + { + "type": "node", + "id": 10913830783, + "lat": 48.8070035, + "lon": 2.5096196, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "4.5 EUR/heure", + "fee": "yes", + "socket:type2:output": "22 kw", + "socket:typee:output": "3 kw" + } + }, + { + "type": "node", + "id": 10913885667, + "lat": 43.6649509, + "lon": 4.0373958, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10913918250, + "lat": 45.7041843, + "lon": 4.578798, + "tags": { + "addr:city": "Yzeron", + "addr:housenumber": "741", + "addr:postcode": "69510", + "addr:street": "Chemin du Plat", + "amenity": "charging_station", + "capacity": "1", + "opening_hours": "24/7", + "operator": "Wallbox" + } + }, + { + "type": "node", + "id": 10913947541, + "lat": 50.0108686, + "lon": 4.7076323, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "name": "Bike energy" + } + }, + { + "type": "node", + "id": 10913955255, + "lat": 43.6259777, + "lon": 4.013408, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "email": "a.buffler@bouygues-es.com", + "fee": "yes", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Mauguio-Carnon - Bornes Privées", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*BE2*P34154003", + "socket:type2": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10913966939, + "lat": 45.4270323, + "lon": 4.4033296, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 10913988789, + "lat": 43.5572235, + "lon": 4.0903425, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34344004", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10913988790, + "lat": 43.5598622, + "lon": 4.0775399, + "tags": { + "access": "customers", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR16", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PXL9FKMEJII", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10913988792, + "lat": 43.5185311, + "lon": 4.1316906, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Port de Camargue", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PJDIEUSSXCH", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10914367628, + "lat": 49.1012058, + "lon": 6.1629621, + "tags": { + "amenity": "charging_station", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10914367629, + "lat": 49.1010709, + "lon": 6.1627961, + "tags": { + "amenity": "charging_station", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10914367630, + "lat": 49.1010493, + "lon": 6.1627791, + "tags": { + "amenity": "charging_station", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10914367631, + "lat": 49.1010272, + "lon": 6.1627603, + "tags": { + "amenity": "charging_station", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 10915648445, + "lat": 48.9640441, + "lon": 1.8594353, + "tags": { + "amenity": "charging_station", + "brand": "ELECTRA", + "operator": "Electra" + } + }, + { + "type": "node", + "id": 10916247352, + "lat": 44.5615561, + "lon": 4.7510658, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "no" + } + }, + { + "type": "node", + "id": 10916310808, + "lat": 47.4715563, + "lon": 1.1253217, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10916496487, + "lat": 49.6628934, + "lon": -1.8360509, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "private": "employees" + } + }, + { + "type": "node", + "id": 10916496488, + "lat": 49.6629196, + "lon": -1.8361075, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "private": "employees" + } + }, + { + "type": "node", + "id": 10916496489, + "lat": 49.6629448, + "lon": -1.8361625, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "private": "employees" + } + }, + { + "type": "node", + "id": 10916496498, + "lat": 49.6621669, + "lon": -1.8364803, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "e-charge50@sdem50.fr", + "fee": "yes", + "motorcar": "yes", + "network": "e-charge50", + "opening_hours": "24/7", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "SDEM50", + "phone": "+33 8 09 10 75 84", + "ref:EU:EVSE": "FR*S50*P50440001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "website": "https://www.e-charge50.fr/charge-points/CU-SDEM-BEA1-50440-1", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10916524989, + "lat": 47.0761656, + "lon": -1.2341798, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10916524990, + "lat": 47.0599802, + "lon": -1.0106304, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10916527377, + "lat": 48.8375378, + "lon": -1.5965357, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "note": "Recharge de voitures électriques (Sdem50)", + "operator": "SDEM50" + } + }, + { + "type": "node", + "id": 10916616675, + "lat": 43.388307, + "lon": 4.8064981, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10916672540, + "lat": 50.5148971, + "lon": 1.6457554, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Lidl Charging Station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10917632186, + "lat": 48.6559156, + "lon": 6.1477523, + "tags": { + "amenity": "charging_station", + "brand": "Hagar", + "socket:type2": "1", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10917632187, + "lat": 48.6559313, + "lon": 6.1477102, + "tags": { + "amenity": "charging_station", + "brand": "Hagar", + "socket:type2": "1", + "source": "knowledge" + } + }, + { + "type": "node", + "id": 10917688841, + "lat": 50.4391014, + "lon": 2.8421348, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10918411747, + "lat": 44.5560042, + "lon": 4.7442662, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10919887419, + "lat": 48.1662858, + "lon": 7.2979192, + "tags": { + "amenity": "charging_station", + "name": "Hôtel de la Couronne", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10921490774, + "lat": 45.8253674, + "lon": 3.1440203, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Territoire d'Énergie 63", + "website": "http://www.sieg63.orios-infos.com/" + } + }, + { + "type": "node", + "id": 10921510275, + "lat": 48.0150829, + "lon": -4.0898487, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10921803188, + "lat": 43.5911295, + "lon": -0.7488585, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "MObiVE" + } + }, + { + "type": "node", + "id": 10921826585, + "lat": 43.5913689, + "lon": -0.7528884, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "description": "Prise Type 2 :\nMi-accéléré / 11 kW / Alternatif triphasé\n\n\nPrise Domestique / E :\nStandard / 4 kW / Alternatif monophasé", + "fee": "yes", + "operator": "MObiVE" + } + }, + { + "type": "node", + "id": 10921971916, + "lat": 50.1794865, + "lon": 3.2630415, + "tags": { + "amenity": "charging_station", + "name": "Station de Recharge Électrique Renault", + "name:en": "Renault Charging Station", + "operator": "Renault", + "operator:wikidata": "Q6686" + } + }, + { + "type": "node", + "id": 10923579451, + "lat": 49.0572904, + "lon": 2.0317906, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10924011635, + "lat": 46.5184321, + "lon": 3.6851757, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "description": "La borne de recharge se situe à côté de la station lavage", + "fee": "yes", + "mapillary": "190264286866363", + "motorcar": "yes", + "network": "Eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SPBR1", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*EBN*PDOMPIERRE", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10926295451, + "lat": 48.7103656, + "lon": 2.1725483, + "tags": { + "amenity": "charging_station", + "authentication:membership_card": "yes", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 10926943462, + "lat": 45.8206875, + "lon": -0.7861015, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "survey" + } + }, + { + "type": "node", + "id": 10927139853, + "lat": 48.5615843, + "lon": 7.4996279, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10928077779, + "lat": 46.671804, + "lon": 5.4596745, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10928742685, + "lat": 48.8795636, + "lon": 2.3887348, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10929844532, + "lat": 43.1461619, + "lon": 2.7268526, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11140001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10929844533, + "lat": 43.3112942, + "lon": 2.9102194, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11012001", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10929844537, + "lat": 43.1544833, + "lon": 2.9791875, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Concessionnaire Nissan 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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMAURINNISSAN111001", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10929844538, + "lat": 43.1655758, + "lon": 2.9949481, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "email": "a.buffler@bouygues-es.com", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Bouygues Énergies et Services", + "payment:credit_cards": "no", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*BE2*P11262001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10929975546, + "lat": 48.4662295, + "lon": -4.2630179, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10929975547, + "lat": 48.4661943, + "lon": -4.2629681, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10933726759, + "lat": 48.7474704, + "lon": 7.6875014, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "fixme": "position on parking is aproximately", + "name": "Ionity Brumath Bernolsheim", + "network": "Ionity", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10933851133, + "lat": 42.8886108, + "lon": 2.7202969, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11401001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10934153593, + "lat": 49.3423067, + "lon": 1.1013474, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Mobi recharge Rouen Normandie", + "capacity": "2", + "fee": "yes", + "operator": "Alizé", + "payment:app": "yes" + } + }, + { + "type": "node", + "id": 10934457048, + "lat": 45.4343112, + "lon": 4.3798609, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 10936470444, + "lat": 42.6811478, + "lon": 2.8926411, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10936748160, + "lat": 48.6382567, + "lon": 7.4458167, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "Wasselonne", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*FR1*PCCMOAYZWCU", + "socket:chademo": "1", + "socket:type2": "2", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10940537379, + "lat": 45.4320125, + "lon": 4.3886371, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 10940673139, + "lat": 42.5452465, + "lon": 2.9235321, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10941358034, + "lat": 48.8209136, + "lon": 2.3433106, + "tags": { + "amenity": "charging_station", + "capacity": "3" + } + }, + { + "type": "node", + "id": 10943758059, + "lat": 45.4357816, + "lon": 4.3861815, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 10944078393, + "lat": 48.8387855, + "lon": 6.0670817, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Commune Dieulouard" + } + }, + { + "type": "node", + "id": 10945765994, + "lat": 42.9644294, + "lon": 9.3481606, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "network": "Emotum", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes", + "socket:type2_combo": "2", + "website": "https://e-motum.net/" + } + }, + { + "type": "node", + "id": 10948856513, + "lat": 48.6719299, + "lon": 5.8892717, + "tags": { + "amenity": "charging_station", + "source": "survey;Ortho HR" + } + }, + { + "type": "node", + "id": 10949163973, + "lat": 48.6667874, + "lon": 2.5479332, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "name": "Stations-e", + "operator": "Stations-e" + } + }, + { + "type": "node", + "id": 10949961983, + "lat": 48.3243779, + "lon": 6.7300265, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "operator": "Fraispertuis-City", + "reservation": "required" + } + }, + { + "type": "node", + "id": 10951526738, + "lat": 43.2720776, + "lon": 3.1697417, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805027953", + "ref:EU:EVSE": "FR*S34*P34135001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10951544458, + "lat": 42.0043519, + "lon": 9.4553911, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "operator": "Ozecar SAS", + "payment:app": "yes", + "socket:type2": "3", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10951775456, + "lat": 43.6066283, + "lon": 1.4837808, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 10951775457, + "lat": 43.6066178, + "lon": 1.4837384, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 10951775458, + "lat": 43.6065837, + "lon": 1.4836379, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 10951775459, + "lat": 43.6065699, + "lon": 1.4835967, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Alizé" + } + }, + { + "type": "node", + "id": 10951874518, + "lat": 41.8573014, + "lon": 9.4000855, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "fee": "yes", + "motorcar": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10951924135, + "lat": 45.7576106, + "lon": 3.126647, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "survey", + "survey:date": "2023-04-13" + } + }, + { + "type": "node", + "id": 10955675644, + "lat": 46.4516655, + "lon": -0.0177102, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "12", + "fee": "yes", + "name": "Ionity Rouillé Sud", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "12", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10956769423, + "lat": 42.2258866, + "lon": 9.5488372, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand:wikidata": "Q5176149", + "capacity": "2", + "covered": "no", + "fee": "yes", + "motorcar": "yes", + "operator": "E-motum", + "operator:wikidata": "Q5176149", + "payment:app": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10957076373, + "lat": 43.0630918, + "lon": 2.9604324, + "tags": { + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "operator": "izivia" + } + }, + { + "type": "node", + "id": 10957085841, + "lat": 49.5202314, + "lon": 2.7201002, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Total Energies", + "capacity": "3", + "fee": "yes", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50kW", + "website": "https://apps.total-ev-charge.com/charge-points/TOTAL-NF080294" + } + }, + { + "type": "node", + "id": 10957085846, + "lat": 47.6266704, + "lon": 6.1715029, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Power Dot", + "capacity": "10", + "fee": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "80kW" + } + }, + { + "type": "node", + "id": 10957477265, + "lat": 48.7876142, + "lon": 2.0509316, + "tags": { + "amenity": "charging_station", + "brand": "sqy share", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10957518006, + "lat": 48.3597674, + "lon": 7.5703127, + "tags": { + "amenity": "charging_station", + "amperage": "16 - 32", + "capacity": "2", + "motorcar": "yes", + "ref": "OCM-197910", + "socket:schuko": "1", + "socket:type2": "1", + "voltage": "230 - 400" + } + }, + { + "type": "node", + "id": 10957518016, + "lat": 48.3597276, + "lon": 7.5702831, + "tags": { + "amenity": "charging_station", + "amperage": "16 - 32", + "capacity": "2", + "motorcar": "yes", + "ref": "OCM-197910", + "socket:schuko": "1", + "socket:type2": "1", + "voltage": "230 - 400" + } + }, + { + "type": "node", + "id": 10957939476, + "lat": 48.6198156, + "lon": 7.7317637, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10959235316, + "lat": 43.7603529, + "lon": -0.572704, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "MObiVE DC" + } + }, + { + "type": "node", + "id": 10960131839, + "lat": 41.7516677, + "lon": 9.1719164, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10960319142, + "lat": 46.150543, + "lon": 3.4124069, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "BDOrtho IGN 2022", + "survey:date": "2023-05-06" + } + }, + { + "type": "node", + "id": 10960319143, + "lat": 46.1503591, + "lon": 3.41087, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "source": "BDOrtho IGN 2022", + "survey:date": "2023-05-06" + } + }, + { + "type": "node", + "id": 10961203017, + "lat": 45.4372659, + "lon": 4.3798535, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 10961283358, + "lat": 45.439908, + "lon": 4.3840244, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem", + "operator": "e-totem / SÉM" + } + }, + { + "type": "node", + "id": 10962225234, + "lat": 43.3106327, + "lon": 6.634761, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10962394085, + "lat": 44.9249947, + "lon": 4.8885339, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10963124647, + "lat": 48.4605241, + "lon": 7.4868076, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10963731201, + "lat": 43.628482, + "lon": 1.4814447, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO002086-1;FRALLEGO002086-2", + "ref:EU:EVSE": "FRALLEGO002086" + } + }, + { + "type": "node", + "id": 10963731202, + "lat": 43.6284831, + "lon": 1.481504, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO002085-1;FRALLEGO002085-2", + "ref:EU:EVSE": "FRALLEGO002085" + } + }, + { + "type": "node", + "id": 10963731203, + "lat": 43.6284842, + "lon": 1.4815633, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "ref": "FRALLEGO002089-1;FRALLEGO002089-2", + "ref:EU:EVSE": "FRALLEGO002089" + } + }, + { + "type": "node", + "id": 10963731204, + "lat": 43.6285639, + "lon": 1.4816781, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Allego", + "ref": "FRALLEGO002087-1;FRALLEGO002087-2", + "ref:EU:EVSE": "FRALLEGO002087" + } + }, + { + "type": "node", + "id": 10963742405, + "lat": 43.6286057, + "lon": 1.4816865, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Allego", + "ref": "FRALLEGO002088-1;FRALLEGO002088-2", + "ref:EU:EVSE": "FRALLEGO002088" + } + }, + { + "type": "node", + "id": 10963742407, + "lat": 43.6286612, + "lon": 1.481645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Allego", + "ref": "FRALLEGO002084-1;FRALLEGO002084-2", + "ref:EU:EVSE": "FRALLEGO002084" + } + }, + { + "type": "node", + "id": 10964164258, + "lat": 42.7757405, + "lon": 2.918814, + "tags": { + "amenity": "charging_station", + "capacity": "12", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Le Crest", + "opening_hours": "24/7", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PCBECLAIRA665301", + "socket:type2": "12", + "socket:typee": "6", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10965392792, + "lat": 48.7016808, + "lon": 2.1051357, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6" + } + }, + { + "type": "node", + "id": 10965908905, + "lat": 45.191149, + "lon": 5.6888363, + "tags": { + "amenity": "charging_station", + "brand": "Alizé", + "note": "réservée aux utilisateurs du service d'autopartage Citiz Alpes Loire", + "survey:date": "2023-06-09" + } + }, + { + "type": "node", + "id": 10967537645, + "lat": 42.9599813, + "lon": 2.5290651, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11260001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10967559253, + "lat": 43.3265522, + "lon": 2.5255579, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11081001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10967566421, + "lat": 43.3154727, + "lon": 2.4640513, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S11*P11433001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10967953088, + "lat": 43.2321454, + "lon": 5.4418893, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10968223500, + "lat": 43.3046989, + "lon": 5.393221, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10968510973, + "lat": 43.3226785, + "lon": 3.3059753, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34073001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968549400, + "lat": 43.2422669, + "lon": 3.2814739, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34324002", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968549643, + "lat": 43.2825232, + "lon": 3.281857, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2" + } + }, + { + "type": "node", + "id": 10968551267, + "lat": 43.3868568, + "lon": 3.1118257, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34069001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968551268, + "lat": 43.439379, + "lon": 3.1463725, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34178001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968552653, + "lat": 43.2916285, + "lon": 3.2562859, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34298001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968560711, + "lat": 43.3066591, + "lon": 3.2081703, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34032007", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968560712, + "lat": 43.2950937, + "lon": 3.2179787, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34329002", + "scooter": "yes", + "socket:chademo": "1", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type2_cable": "2", + "socket:type2_combo": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968562987, + "lat": 43.377323, + "lon": 3.1784339, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805024456", + "ref:EU:EVSE": "FR*S34*P34140001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968562988, + "lat": 43.3355852, + "lon": 3.2842365, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "scooter": "yes", + "socket:schuko": "14", + "socket:type2": "14" + } + }, + { + "type": "node", + "id": 10968572505, + "lat": 43.4494435, + "lon": 3.0499236, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34074003", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10968573314, + "lat": 43.4197548, + "lon": 2.946236, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Mixte Hérault Énergies", + "phone": "+33805021480", + "ref:EU:EVSE": "FR*S34*P34245001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10969100081, + "lat": 46.3987189, + "lon": 6.7677894, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Hotel Le Léman", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10969293321, + "lat": 46.2275453, + "lon": -0.1287042, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "yes", + "motorcar": "yes", + "ref": "FR*SUA*E79264*A1*1*4; FR-ETO2-110503", + "socket:type2": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10969293322, + "lat": 46.2275443, + "lon": -0.1287014, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "yes", + "motorcar": "yes", + "ref": "FR*SUA*E79264*A1*1*1", + "socket:type2": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10969293323, + "lat": 46.2275418, + "lon": -0.1287029, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "yes", + "motorcar": "yes", + "ref": "FR*SUA*E79264*A1*1*2", + "socket:type2": "1", + "socket:typee": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10969293324, + "lat": 46.2275425, + "lon": -0.1287066, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "covered": "yes", + "motorcar": "yes", + "ref": "FR*SUA*E79264*A1*1*3; FR-ETO2-110505", + "socket:type2": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 10969574743, + "lat": 48.2750717, + "lon": 1.8561465, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10973444009, + "lat": 45.1950193, + "lon": 5.1426557, + "tags": { + "amenity": "charging_station", + "capacity": "1" + } + }, + { + "type": "node", + "id": 10974836026, + "lat": 48.9091262, + "lon": 1.8493278, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SEY 78", + "payment:credit_cards": "yes", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://alizecharge.com/partenaires/sey/" + } + }, + { + "type": "node", + "id": 10976671353, + "lat": 48.8378556, + "lon": -1.6000332, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM 50" + } + }, + { + "type": "node", + "id": 10976671354, + "lat": 48.8359282, + "lon": -1.5955464, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM 50" + } + }, + { + "type": "node", + "id": 10976671355, + "lat": 48.8328075, + "lon": -1.568365, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "operator": "SDEM 50" + } + }, + { + "type": "node", + "id": 10977039277, + "lat": 43.6721758, + "lon": 4.6391061, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10977039278, + "lat": 43.6722414, + "lon": 4.6390656, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10977186592, + "lat": 43.8873637, + "lon": 2.0335088, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "name": "Place de la mairie - Florentin", + "network": "Révéo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "owner": "SDET 81", + "ref:EU:EVSE": "FR*S81*P81063*001", + "socket:type2": "2", + "socket:type3c": "2", + "socket:typee": "2", + "source": "local knowledge" + } + }, + { + "type": "node", + "id": 10977470538, + "lat": 42.6688121, + "lon": 2.9176828, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10977968628, + "lat": 45.9344407, + "lon": -0.9585817, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Mobive" + } + }, + { + "type": "node", + "id": 10978431505, + "lat": 48.6100262, + "lon": 6.9946622, + "tags": { + "amenity": "charging_station", + "operator": "Center Parcs" + } + }, + { + "type": "node", + "id": 10978516515, + "lat": 50.6527658, + "lon": 2.9749262, + "tags": { + "access": "customers", + "addr:city": "LOMME", + "addr:postcode": "59160", + "addr:street": "Rue du Grand But", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:contactless": "yes", + "authentication:membership_card": "yes", + "brand": "pass pass électrique", + "capacity": "11", + "charging_station:output": "22 kW", + "fee": "yes", + "name": "pass pass électrique - Parc relais Saint-Philibert", + "payment:app": "yes", + "website": "https://map.alizecharge.com/passpasselectrique" + } + }, + { + "type": "node", + "id": 10978991973, + "lat": 46.0594209, + "lon": 6.5310679, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 10978991974, + "lat": 46.0603573, + "lon": 6.5264396, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10979020027, + "lat": 46.0642896, + "lon": 6.5479061, + "tags": { + "amenity": "charging_station", + "operator": "Syane" + } + }, + { + "type": "node", + "id": 10979886458, + "lat": 46.1059963, + "lon": -1.0985082, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10980880942, + "lat": 48.7616125, + "lon": 2.4139788, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10981057005, + "lat": 49.1170155, + "lon": 7.0877093, + "tags": { + "addr:housenumber": "16", + "addr:postcode": "57200", + "addr:street": "Rue des Ormes", + "amenity": "charging_station", + "name": "Lidl", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 10981061405, + "lat": 49.1177422, + "lon": 7.095229, + "tags": { + "addr:housenumber": "50", + "addr:postcode": "57200", + "addr:street": "Rue de Bitche", + "amenity": "charging_station", + "name": "Cora", + "operator": "Powerdot" + } + }, + { + "type": "node", + "id": 10981198700, + "lat": 50.007919, + "lon": 4.0636325, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "IBIS Fourmies", + "operator": "Pass Pass Electrique", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "website": "https://passpasselectrique.fr/fr/" + } + }, + { + "type": "node", + "id": 10981287269, + "lat": 49.9080374, + "lon": 4.0919127, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "operator:wikidata": "Q151954", + "socket:type2": "4", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10981677626, + "lat": 46.8846005, + "lon": 6.3263269, + "tags": { + "access": "private", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10981678164, + "lat": 46.899351, + "lon": 6.3423367, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10981678165, + "lat": 46.898233, + "lon": 6.3418311, + "tags": { + "access": "customers", + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 10981678201, + "lat": 46.8969075, + "lon": 6.3403653, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Thor", + "capacity": "2", + "manufacturer": "KEBA Energy", + "model": "KC-P30-ESS400E2-M0R-SE", + "serial_number": "24304022;24339088", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10981678202, + "lat": 46.8968774, + "lon": 6.3404084, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "Thor", + "capacity": "2", + "manufacturer": "KEBA Energy", + "model": "KC-P30-ESS400E2-M0R-SE", + "serial_number": "24303951;24304006", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 10981966954, + "lat": 47.9963191, + "lon": -0.1484759, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "SARTHE IRVE", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 10981990931, + "lat": 47.9951755, + "lon": -0.1493098, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "SARTHE IRVE", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 10981990932, + "lat": 47.9951575, + "lon": -0.1493343, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "operator": "SARTHE IRVE", + "payment:cards": "yes" + } + }, + { + "type": "node", + "id": 10982369807, + "lat": 45.2183309, + "lon": 2.3166212, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "6", + "covered": "no" + } + }, + { + "type": "node", + "id": 10982805488, + "lat": 49.4373225, + "lon": 1.112771, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 10983880477, + "lat": 48.1252171, + "lon": -1.7547924, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "IECharge", + "capacity": "2", + "charge": "0.30 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "operator": "NW", + "payment:app": "yes", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes", + "socket:chademo": "1", + "socket:chademo:output": "56 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "160 kW" + } + }, + { + "type": "node", + "id": 10983880478, + "lat": 48.1251945, + "lon": -1.7548101, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "IECharge", + "capacity": "1", + "charge": "0.30 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "operator": "NW", + "payment:app": "yes", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 10983880479, + "lat": 48.1251754, + "lon": -1.7548261, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "IECharge", + "capacity": "2", + "charge": "0.30 EUR/kWh", + "fee": "yes", + "motorcar": "yes", + "operator": "NW", + "payment:app": "yes", + "payment:credit_cards": "yes", + "payment:debit_cards": "yes", + "socket:type2_combo": "2", + "socket:type2_combo:output": "325 kW" + } + }, + { + "type": "node", + "id": 10983926605, + "lat": 45.7643755, + "lon": -0.4959986, + "tags": { + "amenity": "charging_station", + "operator": "evbox" + } + }, + { + "type": "node", + "id": 10984259422, + "lat": 48.8220747, + "lon": 2.3146398, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P92049F", + "reservation": "yes", + "socket:chademo": "1", + "socket:type2_combo": "3", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10984493877, + "lat": 43.6322619, + "lon": 5.4937894, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "12", + "fee": "yes", + "name": "Ionity Meyrargues", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "12", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10988903518, + "lat": 48.9597614, + "lon": 2.4252278, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903519, + "lat": 48.9597839, + "lon": 2.4251686, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903520, + "lat": 48.9598064, + "lon": 2.4251092, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903521, + "lat": 48.959828, + "lon": 2.4250522, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903522, + "lat": 48.959851, + "lon": 2.4249918, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903523, + "lat": 48.9598732, + "lon": 2.4249331, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903524, + "lat": 48.9598959, + "lon": 2.4248733, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903525, + "lat": 48.9599179, + "lon": 2.4248155, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903526, + "lat": 48.9599404, + "lon": 2.424756, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903527, + "lat": 48.9599626, + "lon": 2.4246974, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903528, + "lat": 48.9599846, + "lon": 2.4246396, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903529, + "lat": 48.9600072, + "lon": 2.4245801, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903530, + "lat": 48.9600296, + "lon": 2.424521, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10988903531, + "lat": 48.9600518, + "lon": 2.4244625, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 10989090317, + "lat": 48.7806392, + "lon": 2.0411987, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Madic Group", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Bouygues Energies Services", + "owner": "CASQY", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 10989100497, + "lat": 48.784711, + "lon": 2.0528628, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Madic Group", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Bouygues Energies Services", + "owner": "CASQY", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 10989100498, + "lat": 48.7742606, + "lon": 2.0639322, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Madic Group", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Bouygues Energies Services", + "owner": "CASQY", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 10989101495, + "lat": 48.7699161, + "lon": 2.0398391, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "bicycle": "no", + "capacity": "2", + "charging_station:output": "36 kW", + "covered": "no", + "fee": "yes", + "manufacturer": "Madic Group", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Bouygues Energies Services", + "owner": "CASQY", + "parking:fee": "no", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "payment:mastercard": "yes", + "payment:visa": "yes", + "socket:schuko": "2", + "socket:schuko:amperage": "16", + "socket:schuko:output": "3.6 kW", + "socket:schuko:voltage": "230", + "socket:type2": "2", + "socket:type2:amperage": "32", + "socket:type2:output": "22 kW", + "socket:type2:voltage": "400" + } + }, + { + "type": "node", + "id": 10989972820, + "lat": 48.8108985, + "lon": 2.3154602, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P92049A", + "reservation": "yes", + "socket:type2": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10989972821, + "lat": 48.8108548, + "lon": 2.3156233, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P92049A", + "reservation": "yes", + "socket:type2": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10989972822, + "lat": 48.8107131, + "lon": 2.3161531, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P92049A", + "reservation": "yes", + "socket:type2": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10989972823, + "lat": 48.8107818, + "lon": 2.3158961, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "info-usager.silene@spie.com", + "fee": "yes", + "motorcar": "yes", + "network": "Métropolis", + "opening_hours": "24/7", + "operator": "SPIE CityNetworks", + "owner": "Métropolis", + "payment:credit_cards": "yes", + "phone": "+33970830213", + "ref:EU:EVSE": "FR*MGP*P92049A", + "reservation": "yes", + "socket:type2": "6", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 10994021633, + "lat": 47.1328802, + "lon": -1.7503172, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "SYDEGO" + } + }, + { + "type": "node", + "id": 10994021634, + "lat": 47.1328997, + "lon": -1.7503758, + "tags": { + "access": "yes", + "amenity": "charging_station", + "fee": "yes", + "operator": "Sydego" + } + }, + { + "type": "node", + "id": 10994066931, + "lat": 46.9049566, + "lon": -1.0467477, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "16", + "fee": "yes", + "name": "Ionity Herbiers", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "16", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 10994335574, + "lat": 45.4380105, + "lon": 4.3919174, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 10994894737, + "lat": 42.6344048, + "lon": 2.7585583, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Reveo", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "SDEE des Pyrénées Orientales", + "phone": "+33805025225", + "ref:EU:EVSE": "FR*S66*P66210001", + "socket:schuko": "2", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 10996699503, + "lat": 44.8334658, + "lon": -0.6370484, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "22kW", + "description": "2 points de charge", + "fee": "yes", + "operator": "EGS", + "payment:badge": "yes" + } + }, + { + "type": "node", + "id": 10998230580, + "lat": 48.0762923, + "lon": 6.8849248, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 10998552852, + "lat": 48.8265376, + "lon": 2.481719, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "Borne 2", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 10998552853, + "lat": 48.8265377, + "lon": 2.4817257, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "name": "Borne 1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11002027990, + "lat": 44.0565472, + "lon": 5.2356586, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11002027991, + "lat": 44.0564907, + "lon": 5.2356256, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11002750875, + "lat": 43.7072679, + "lon": -1.0252766, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11002780756, + "lat": 43.7071629, + "lon": -1.0252608, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11002846207, + "lat": 47.082833, + "lon": -1.411179, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "hello@powerdot.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "payment:credit_cards": "no", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*PD1*PITMAFM", + "socket:chademo": "1", + "socket:type2": "2", + "socket:type2_combo": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11003104740, + "lat": 43.7667905, + "lon": 6.5437075, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11003349185, + "lat": 49.1257176, + "lon": -0.2126681, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11003413099, + "lat": 48.2995734, + "lon": 5.8427897, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "covered": "no", + "description": "Bornes de Charge 7 places\n1x Type 2 (Triphasé)\n1x Chademo\n5x Combo CCS EU", + "fee": "yes", + "name": "Power Dot" + } + }, + { + "type": "node", + "id": 11005657571, + "lat": 45.173253, + "lon": -0.3341406, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "fixme": "location approximately", + "name": "Ionity Bedenac Ouest", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11005748036, + "lat": 48.5983957, + "lon": -2.2863683, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "ZEborne", + "payment:app": "yes", + "payment:rfid": "yes", + "source": "survey" + } + }, + { + "type": "node", + "id": 11006037268, + "lat": 43.6178622, + "lon": 7.0746974, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "WiiiZ", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT-005005", + "ref:EU:EVSE": "FR*A16*PWIIZ1921", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2", + "socket:typee:output": "3 kW", + "socket:typee:voltage": "230 V", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11006037269, + "lat": 43.6183897, + "lon": 7.0749043, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "WiiiZ", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "WiiiZ", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT 021236", + "ref:EU:EVSE": "FR*A16*PWIIZ13312", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_cable": "1", + "socket:type2_cable:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11006216805, + "lat": 45.8323966, + "lon": 4.8490424, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Izivia Grand Lyon", + "ref": "FOS03A", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2": "1", + "socket:type2:output": "43 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50 kW" + } + }, + { + "type": "node", + "id": 11006408605, + "lat": 47.8786397, + "lon": -3.0388116, + "tags": { + "access": "yes", + "alt_name": "Baud", + "amenity": "charging_station", + "fee": "yes", + "name": "station Baud", + "opening_hours": "24/7", + "operator": "IECharge", + "source": "https://iecharge.io/fr/stations/", + "source:wheelchair": "https://fr.chargemap.com/1448-route-de-pont-augan.html", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 11007192397, + "lat": 50.0905668, + "lon": 1.5494115, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PWBRCYE", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11007397910, + "lat": 45.4306441, + "lon": 4.3834645, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 11007673295, + "lat": 43.5514056, + "lon": 6.9593675, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "WiiiZ", + "capacity": "8", + "charge": "3 EUR/1 hour", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11010401838, + "lat": 49.2428245, + "lon": 0.7743551, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Shell", + "cables": "yes", + "capacity": "4", + "connectivity": "2 CSS connectors", + "covered": "no", + "level": "0", + "operator": "Shell" + } + }, + { + "type": "node", + "id": 11010401839, + "lat": 49.2428642, + "lon": 0.7744247, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Shell", + "cables": "yes", + "capacity": "4", + "connectivity": "2 CSS connectors", + "covered": "no", + "level": "0", + "operator": "Shell" + } + }, + { + "type": "node", + "id": 11010920279, + "lat": 43.6957197, + "lon": 7.2696067, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "manufacturer": "Schneider Electric", + "operator": "EVlink", + "source": "survey" + } + }, + { + "type": "node", + "id": 11010920280, + "lat": 43.6957069, + "lon": 7.2693664, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "manufacturer": "Schneider Electric", + "operator": "EVlink" + } + }, + { + "type": "node", + "id": 11011026452, + "lat": 46.2022881, + "lon": 6.268419, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "manufacturer": "EVlink" + } + }, + { + "type": "node", + "id": 11011858800, + "lat": 43.7071135, + "lon": -1.0252559, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11012104171, + "lat": 42.8498617, + "lon": 2.59913, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "info": "Borne gratuite", + "opening_hours": "24/7", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 11012122134, + "lat": 42.8617597, + "lon": 2.5653041, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805028042", + "ref:EU:EVSE": "FR*S11*P11123001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11012148876, + "lat": 42.8042148, + "lon": 2.2346227, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:nfc": "yes", + "bicycle": "yes", + "capacity": "2", + "email": "support@alizecharge.fr", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Reveo", + "opening_hours": "24/7", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Syndicat Audois d'Énergies", + "phone": "+33805023238", + "ref:EU:EVSE": "FR*S11*P11021001", + "scooter": "yes", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11012461136, + "lat": 48.8427704, + "lon": 2.2921318, + "tags": { + "amenity": "charging_station", + "brand": "Bet'Lib", + "capacity": "1" + } + }, + { + "type": "node", + "id": 11012461137, + "lat": 48.842758, + "lon": 2.2921608, + "tags": { + "amenity": "charging_station", + "brand": "Bet'Lib", + "capacity": "1" + } + }, + { + "type": "node", + "id": 11012461138, + "lat": 48.8427462, + "lon": 2.2921897, + "tags": { + "amenity": "charging_station", + "brand": "Bet'Lib", + "capacity": "1" + } + }, + { + "type": "node", + "id": 11012461139, + "lat": 48.8427365, + "lon": 2.292218, + "tags": { + "amenity": "charging_station", + "brand": "Bet'Lib", + "capacity": "1" + } + }, + { + "type": "node", + "id": 11012461140, + "lat": 48.8427255, + "lon": 2.2922448, + "tags": { + "amenity": "charging_station", + "brand": "Bet'Lib", + "capacity": "1" + } + }, + { + "type": "node", + "id": 11012461141, + "lat": 48.8427149, + "lon": 2.2922759, + "tags": { + "amenity": "charging_station", + "brand": "Bet'Lib", + "capacity": "1" + } + }, + { + "type": "node", + "id": 11012692199, + "lat": 43.6726278, + "lon": 3.9134404, + "tags": { + "amenity": "charging_station", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 11013537350, + "lat": 43.6923681, + "lon": -1.0504114, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013537351, + "lat": 43.6923718, + "lon": -1.0503921, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013537352, + "lat": 43.6923226, + "lon": -1.050386, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013537353, + "lat": 43.6923226, + "lon": -1.0504033, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013537354, + "lat": 43.6921264, + "lon": -1.0488087, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013537355, + "lat": 43.6920751, + "lon": -1.0487656, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013537356, + "lat": 43.6920261, + "lon": -1.0487255, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11013596883, + "lat": 45.4098861, + "lon": 4.3869352, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 11013719596, + "lat": 45.892534, + "lon": 6.0914683, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "operator": "Volta", + "socket:schuko": "1", + "socket:type2": "3" + } + }, + { + "type": "node", + "id": 11013724602, + "lat": 45.5389345, + "lon": 5.9900294, + "tags": { + "amenity": "charging_station", + "charge": "0.25€/kWh", + "fee": "yes", + "operator": "lidl" + } + }, + { + "type": "node", + "id": 11013724923, + "lat": 45.7532966, + "lon": 6.2769297, + "tags": { + "amenity": "charging_station", + "charge": "0.25€/kWh", + "fee": "yes", + "operator": "xfm.fr" + } + }, + { + "type": "node", + "id": 11013724924, + "lat": 45.8770468, + "lon": 6.0879454, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "socket:type2_cable": "1" + } + }, + { + "type": "node", + "id": 11013724925, + "lat": 45.8924944, + "lon": 6.0910848, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "operator": "volta", + "socket:schuko": "1", + "socket:type2": "3" + } + }, + { + "type": "node", + "id": 11013725364, + "lat": 45.7260691, + "lon": 5.9265152, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 11013727391, + "lat": 45.818481, + "lon": 6.0032215, + "tags": { + "amenity": "charging_station", + "fee": "no", + "name": "Saint Fé", + "socket:schuko": "2", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 11013727538, + "lat": 45.9000367, + "lon": 6.1288774, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "level": "-1", + "parking:fee": "yes", + "socket:schuko": "8", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 11013729752, + "lat": 45.5921814, + "lon": 5.9018915, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "socket:schuko": "3" + } + }, + { + "type": "node", + "id": 11013729901, + "lat": 45.6212671, + "lon": 5.8898594, + "tags": { + "amenity": "charging_station", + "authentication:contactless": "yes", + "fee": "no", + "name": "Metro", + "note": "authenticate with any rfid", + "socket:schuko": "1", + "socket:type2": "5" + } + }, + { + "type": "node", + "id": 11013731004, + "lat": 45.6238591, + "lon": 6.7809719, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "level": "+1", + "name": "Darty Intersport", + "opening_hours": "Mo-Sa 08:00-20:30; Su 08:00-13:00", + "socket:schuko": "1", + "socket:type2": "1" + } + }, + { + "type": "node", + "id": 11013731403, + "lat": 45.270784, + "lon": 6.3632527, + "tags": { + "amenity": "charging_station", + "name": "Renault", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 11013732976, + "lat": 45.3623418, + "lon": 5.598008, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "no", + "name": "Chartreuse", + "opening_hours": "Mo-Su 10:00-18:30", + "socket:schuko": "1", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 11013739232, + "lat": 45.1939075, + "lon": 6.6597704, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "fee": "no", + "operator": "Maurienne", + "socket:schuko": "2", + "socket:type2": "2", + "socket:type3c": "1" + } + }, + { + "type": "node", + "id": 11013741833, + "lat": 45.5721164, + "lon": 5.918887, + "tags": { + "amenity": "charging_station", + "charge": "0.50€/kWh", + "fee": "yes", + "operator": "EFFIA", + "parking:fee": "yes" + } + }, + { + "type": "node", + "id": 11013742030, + "lat": 45.6606012, + "lon": 6.3840717, + "tags": { + "amenity": "charging_station", + "fee": "no", + "operator": "Renault", + "socket:type2_cable": "2" + } + }, + { + "type": "node", + "id": 11013744031, + "lat": 45.9037029, + "lon": 6.1440193, + "tags": { + "access": "customers", + "amenity": "charging_station", + "socket:type2_cable": "3" + } + }, + { + "type": "node", + "id": 11013744605, + "lat": 45.8853967, + "lon": 6.3291121, + "tags": { + "amenity": "charging_station", + "charge": "3€", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11013815589, + "lat": 48.3485397, + "lon": 4.5320809, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11014347886, + "lat": 45.216866, + "lon": -0.187188, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "no", + "network": "MObiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "SDEER 17", + "ref:EU:EVSE": "FR*SOD*S*MB17*63*1*_*_", + "scooter": "no", + "socket:type2_cable": "1", + "socket:type2_cable:output": "22 kW", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kW", + "source": "data.gouv.fr:Bornes de recharge pour véhicules électriques - 2023-06-28" + } + }, + { + "type": "node", + "id": 11015219711, + "lat": 45.1436051, + "lon": 5.6908932, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "ref": "MAT-023661", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11015219712, + "lat": 45.1434287, + "lon": 5.6907195, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "ref": "67", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11015219713, + "lat": 45.1434528, + "lon": 5.6907859, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "ref": "MAT-023665", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11015219714, + "lat": 45.1434726, + "lon": 5.6908409, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "ref": "MAT-023663", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11015219912, + "lat": 45.1436091, + "lon": 5.6907849, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "ref": "MAT-023659", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11015989673, + "lat": 43.702268, + "lon": -0.261695, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "authentication:nfc": "yes", + "brand": "FreshMile", + "fee": "yes", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 11016499682, + "lat": 43.4219957, + "lon": 5.991864, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "name": "Total Energies" + } + }, + { + "type": "node", + "id": 11016549961, + "lat": 45.9073218, + "lon": 6.1065703, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SPBR1", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PTDVAAV", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11016680741, + "lat": 45.438302, + "lon": -0.4250244, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VVMK1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11016680742, + "lat": 45.4383037, + "lon": -0.4250279, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VAVL1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11016680743, + "lat": 45.4382946, + "lon": -0.4250315, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VUEE1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11016680744, + "lat": 45.4382963, + "lon": -0.4250351, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VYFL1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11016707428, + "lat": 43.471441, + "lon": 5.6429605, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "16", + "fee": "yes", + "name": "Ionity Rousset", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "16", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11016707498, + "lat": 42.6916964, + "lon": 2.9196099, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11016707503, + "lat": 42.6917415, + "lon": 2.9196086, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11016813707, + "lat": 42.6917867, + "lon": 2.9196073, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11016813711, + "lat": 42.691832, + "lon": 2.9196059, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11016880335, + "lat": 50.4572188, + "lon": 3.5737324, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11016880336, + "lat": 50.4571787, + "lon": 3.5737082, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11016880337, + "lat": 50.4571283, + "lon": 3.5736841, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11016880338, + "lat": 50.457078, + "lon": 3.57366, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11017884087, + "lat": 45.0702172, + "lon": 5.5543208, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle_parking": "stands", + "capacity": "4", + "covered": "no", + "cycling": "yes", + "fee": "no" + } + }, + { + "type": "node", + "id": 11017915616, + "lat": 43.6993571, + "lon": 7.2795531, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11017926020, + "lat": 43.6993678, + "lon": 7.2796273, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schneider Electric" + } + }, + { + "type": "node", + "id": 11017926718, + "lat": 43.6993625, + "lon": 7.2795911, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11018033751, + "lat": 48.9600687, + "lon": 2.4244196, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 11018033752, + "lat": 48.958979, + "lon": 2.4245664, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 11018033753, + "lat": 48.9590648, + "lon": 2.4243461, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 11018033754, + "lat": 48.9590435, + "lon": 2.4244081, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Airbus", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 11018293697, + "lat": 48.8531274, + "lon": 2.2614583, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "Belib" + } + }, + { + "type": "node", + "id": 11018406426, + "lat": 48.8682493, + "lon": 2.2255599, + "tags": { + "amenity": "charging_station", + "brand": "Sigeif", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11018482054, + "lat": 48.8245703, + "lon": 2.2136408, + "tags": { + "amenity": "charging_station", + "brand": "Sigeif" + } + }, + { + "type": "node", + "id": 11018742759, + "lat": 48.567546, + "lon": 5.7382492, + "tags": { + "amenity": "charging_station", + "location": "outdoor", + "source": "survey", + "support": "wall_mounted" + } + }, + { + "type": "node", + "id": 11020179884, + "lat": 46.3309459, + "lon": -1.3217597, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11020549659, + "lat": 44.9777205, + "lon": -0.4332738, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "operator": "Total", + "operator:wikidata": "Q154037" + } + }, + { + "type": "node", + "id": 11021716954, + "lat": 50.215058, + "lon": 1.5640193, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "web@freshmile.com", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "operator": "Freshmile SAS", + "owner": "FDE80", + "payment:credit_cards": "yes", + "phone": "+33369246732", + "ref:EU:EVSE": "FR*S80*PCAYEUXARGOU", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11021809138, + "lat": 43.6547294, + "lon": -0.5666296, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "NW IECharge", + "capacity": "2", + "description": "2 prises : 160KW (x1) et 7KW (x1)", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11021902390, + "lat": 45.4309495, + "lon": 4.3905462, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 11021998130, + "lat": 43.6950144, + "lon": 7.2779753, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2013-07-03" + } + }, + { + "type": "node", + "id": 11021999290, + "lat": 43.6950329, + "lon": 7.2777886, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "survey:date": "2023-07-03" + } + }, + { + "type": "node", + "id": 11022196453, + "lat": 48.5526098, + "lon": -4.5382597, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11022655955, + "lat": 43.7262072, + "lon": -1.0722796, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11022655956, + "lat": 43.726218, + "lon": -1.0723478, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11023061625, + "lat": 43.5833128, + "lon": 7.1087724, + "tags": { + "amenity": "charging_station", + "name": "Wiiz" + } + }, + { + "type": "node", + "id": 11023085432, + "lat": 46.2016309, + "lon": 6.2653439, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Concessionnaire SUZUKI Annemasse", + "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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMAURINSUZUKI741001", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 11023463547, + "lat": 48.813726, + "lon": 1.8991188, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11023529250, + "lat": 46.2013543, + "lon": 6.2646411, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "email": "exploitation@driveco.com", + "fee": "yes", + "motorcar": "yes", + "network": "Ford", + "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", + "payment:credit_cards": "yes", + "ref:EU:EVSE": "FR*SSD*PMAURINFORD741001", + "socket:type2": "2", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 11023538561, + "lat": 48.7616106, + "lon": 1.9178293, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "operator": "Auchan", + "operator:wikidata": "Q758603", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2": "1", + "socket:type2:output": "43kW" + } + }, + { + "type": "node", + "id": 11024847562, + "lat": 45.7869452, + "lon": 4.8341202, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "1", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "CAL02D" + } + }, + { + "type": "node", + "id": 11024847564, + "lat": 45.7869988, + "lon": 4.8341437, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "1", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "CAL02C", + "source:ref": "extrapolation" + } + }, + { + "type": "node", + "id": 11024847566, + "lat": 45.7870528, + "lon": 4.8341681, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "1", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "CAL02B" + } + }, + { + "type": "node", + "id": 11024847567, + "lat": 45.7871051, + "lon": 4.834192, + "tags": { + "amenity": "charging_station", + "brand": "Izivia", + "capacity": "1", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "ref": "CAL02A" + } + }, + { + "type": "node", + "id": 11025077213, + "lat": 47.3861273, + "lon": -2.5102208, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11025391883, + "lat": 45.7241532, + "lon": 5.7028258, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 11025392880, + "lat": 45.8475006, + "lon": 5.7809307, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 11025853290, + "lat": 49.299503, + "lon": 0.8746786, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "pascal.lhermitte@siege27.fr", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE204", + "opening_hours": "24/7", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "payment:credit_cards": "yes", + "phone": "+33232398200", + "ref:EU:EVSE": "FR*S27*PBOURTHEROULDEMAIRIE", + "reservation": "yes", + "socket:type2": "2", + "socket:typee": "2", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 11027682843, + "lat": 45.9567643, + "lon": 2.9890916, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "name": "Electra Manzat", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:chademo": "2", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW", + "website": "https://app.go-electra.com/stations/U3VwZXJ2aXNpb246OlN0YXRpb25fNDgzNTI0ZmMtY2Q2OC0xMWVkLWFhOTItNzc4ZDQ1ZTNlZWE3" + } + }, + { + "type": "node", + "id": 11028288954, + "lat": 46.2240213, + "lon": -1.4324765, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "2", + "covered": "no", + "fee": "yes", + "operator": "mobive", + "source": "survey" + } + }, + { + "type": "node", + "id": 11029907529, + "lat": 43.6921659, + "lon": -1.048828, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11029997699, + "lat": 46.2031945, + "lon": 6.2692968, + "tags": { + "amenity": "charging_station", + "name": "Jalix VLG/Borne 1", + "network": "ChargePoint" + } + }, + { + "type": "node", + "id": 11031788589, + "lat": 43.2535082, + "lon": 5.3761446, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Engie", + "capacity": "2", + "fee": "yes", + "payment:cards": "yes", + "payment:debit_cards": "yes" + } + }, + { + "type": "node", + "id": 11031804405, + "lat": 45.8706765, + "lon": 1.2684817, + "tags": { + "addr:street": "Rue Pierre Michaux", + "amenity": "charging_station", + "name": "Tesla Supercharger", + "opening_hours": "24/7", + "operator": "Tesla", + "website": "http://tesla.com" + } + }, + { + "type": "node", + "id": 11031954152, + "lat": 43.2985659, + "lon": 3.4768543, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Agde", + "network": "Ionity", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11032001169, + "lat": 47.918639, + "lon": 7.5270179, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11032247295, + "lat": 44.4410276, + "lon": -1.245775, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Virta", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247296, + "lat": 44.450662, + "lon": -1.2469064, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247297, + "lat": 44.4520024, + "lon": -1.2387126, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Zephyre", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247298, + "lat": 44.4591516, + "lon": -1.2395941, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Virta", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247299, + "lat": 44.4601874, + "lon": -1.1989118, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247300, + "lat": 44.4554504, + "lon": -1.2010993, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Virta", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247301, + "lat": 44.4309926, + "lon": -1.1717635, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Virta", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247302, + "lat": 44.4294991, + "lon": -1.1673046, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247303, + "lat": 44.4282772, + "lon": -1.163273, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032247304, + "lat": 44.4111044, + "lon": -1.1704357, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032320605, + "lat": 44.4096253, + "lon": -1.1681912, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032320606, + "lat": 44.3972797, + "lon": -1.1669597, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Electromaps", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032320607, + "lat": 44.3897441, + "lon": -1.1616336, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Izivia", + "opening_hours": "24/7", + "owner": "SYDEC 40", + "ref:EU:EVSE": "FR*S40*PMB40*51", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11032322414, + "lat": 50.3367699, + "lon": 3.165431, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté de Communes du Coeur d'Ostrevent", + "phone": "+33805022492", + "ref:EU:EVSE": "FR*H07*P59345002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11032989726, + "lat": 44.000456, + "lon": 4.3719551, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11032992788, + "lat": 49.8851993, + "lon": 4.738723, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11032998532, + "lat": 46.354966, + "lon": 2.8022039, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "covered": "yes", + "fee": "yes", + "name": "ENGIE Allier Doyer", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 11033002057, + "lat": 50.6618807, + "lon": 3.0700171, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11033006407, + "lat": 50.6618869, + "lon": 3.0697919, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11033456648, + "lat": 45.8981723, + "lon": -0.9550125, + "tags": { + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11033700031, + "lat": 45.8962573, + "lon": 3.1378922, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Tesla Supercharger", + "brand:wikidata": "Q17089620", + "capacity": "12", + "motorcar": "yes", + "name": "Tesla Supercharger", + "opening_hours": "24/7", + "operator": "Tesla, Inc.", + "operator:wikidata": "Q478214", + "short_name": "Tesla", + "socket:tesla_supercharger": "12", + "socket:tesla_supercharger_ccs": "12", + "socket:tesla_supercharger_ccs:output": "250 kW", + "source": "https://www.tesla.com/findus/location/supercharger/275228" + } + }, + { + "type": "node", + "id": 11034550523, + "lat": 48.044933, + "lon": 7.3122223, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11034949698, + "lat": 48.4019934, + "lon": -4.3919136, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "BDOrtho IGN - 2023;streetlevel imagery" + } + }, + { + "type": "node", + "id": 11034950813, + "lat": 48.6816264, + "lon": -1.967392, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "charge": "0.40/kwh", + "fee": "yes", + "name": "OuestCharge", + "survey:date": "2023-07-09" + } + }, + { + "type": "node", + "id": 11035670145, + "lat": 45.3600018, + "lon": 1.9379437, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "12", + "fee": "yes", + "name": "ENGIE Corrèze", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11035685760, + "lat": 45.1610141, + "lon": 1.4406046, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "8", + "fee": "yes", + "name": "IONITY Pays de Brive Nord", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "8", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11035940050, + "lat": 46.1804288, + "lon": 6.7037698, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:type2_cable": "0", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 11036762179, + "lat": 46.1476371, + "lon": -1.1650063, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "virta" + } + }, + { + "type": "node", + "id": 11036963416, + "lat": 45.8611364, + "lon": -0.8381401, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref": "MAT-013301", + "ref:EU:EVSE": "FR*S17*PMB172611", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "survey; data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11037834124, + "lat": 43.8012633, + "lon": 5.8179075, + "tags": { + "amenity": "charging_station", + "brand": "V-Gas Manosque", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11038083298, + "lat": 45.4388956, + "lon": -0.4407927, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VDPE1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11038083299, + "lat": 45.4402852, + "lon": -0.4345519, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "manufacturer": "Schneider Electric", + "model": "EVlink Pro", + "operator": "Freshmile", + "owner": "Communauté des Communes de la Haute-Saintonge", + "ref": "VQRT1", + "socket:type2": "1", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11038112361, + "lat": 45.4387941, + "lon": -0.4374794, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Cette borne fonctionne seulement lors de l'ouverture de la pépinière d'entreprises.", + "operator": "Communauté des Communes de la Haute-Saintonge", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2023-03-29" + } + }, + { + "type": "node", + "id": 11038112362, + "lat": 45.4387759, + "lon": -0.4374013, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "description": "Cette borne fonctionne seulement lors de l'ouverture de la pépinière d'entreprises.", + "operator": "Communauté des Communes de la Haute-Saintonge", + "socket:type2": "2", + "socket:typee": "2", + "survey:date": "2023-03-29" + } + }, + { + "type": "node", + "id": 11038122698, + "lat": 46.7454143, + "lon": 6.2949219, + "tags": { + "amenity": "charging_station", + "operator": "SIEL" + } + }, + { + "type": "node", + "id": 11038759402, + "lat": 46.1957625, + "lon": 6.2599057, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "10", + "email": "supervision-ev.france@totalenergies.com", + "fee": "yes", + "motorcar": "yes", + "network": "SAMSE - ERP EDB ANNEMASSE", + "opening_hours": "Mo-Sa 07:30-19:30", + "operator": "TotalEnergies", + "operator:wikidata": "Q154037", + "owner": "La Boite A Outils", + "payment:credit_cards": "no", + "ref:EU:EVSE": "FR*TCB*P01329", + "socket:type2": "10", + "socket:typee": "10", + "source": "data.gouv.fr:Etalab - 05/2022", + "wheelchair": "yes" + } + }, + { + "type": "node", + "id": 11039453250, + "lat": 48.6943673, + "lon": 6.1286463, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 11039453251, + "lat": 48.6943609, + "lon": 6.128695, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "source": "survey" + } + }, + { + "type": "node", + "id": 11039886447, + "lat": 44.3141975, + "lon": -1.1691657, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Driveco" + } + }, + { + "type": "node", + "id": 11039886843, + "lat": 44.4841605, + "lon": -1.0900691, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Izivia" + } + }, + { + "type": "node", + "id": 11039886844, + "lat": 44.4952989, + "lon": -1.075911, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Driveco" + } + }, + { + "type": "node", + "id": 11039891165, + "lat": 44.3461697, + "lon": -1.0925923, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Be Cable" + } + }, + { + "type": "node", + "id": 11039976573, + "lat": 48.8098158, + "lon": 2.4330872, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 11041836207, + "lat": 43.7733738, + "lon": 6.2089737, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "name": "Les Salles-sur-Verdon_Place Gleb Sivirine", + "operator": "Réseau eborn", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 11042075701, + "lat": 48.7744116, + "lon": 2.2373195, + "tags": { + "access": "no", + "amenity": "charging_station", + "capacity": "2", + "parking:fee": "no" + } + }, + { + "type": "node", + "id": 11042741366, + "lat": 43.9908673, + "lon": 3.6037399, + "tags": { + "amenity": "charging_station", + "name": "3 vélos" + } + }, + { + "type": "node", + "id": 11042817704, + "lat": 48.2711294, + "lon": 1.8561988, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Val Neuvy", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11043071109, + "lat": 49.0428342, + "lon": -1.5758206, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11043722020, + "lat": 48.5456875, + "lon": -3.3962366, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Brev'Car sde22" + } + }, + { + "type": "node", + "id": 11043765386, + "lat": 43.243541, + "lon": 5.5933915, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11043884839, + "lat": 48.5941383, + "lon": 1.6776585, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "name": "Ionity Hanches", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2:output": "350 kW", + "socket:type2_combo": "6" + } + }, + { + "type": "node", + "id": 11044001234, + "lat": 48.621025, + "lon": 2.0007285, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*A05*PRMBT1012", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11044033725, + "lat": 43.8957637, + "lon": -0.5124659, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "operator": "Chambre des Métiers et de l'Artisanat" + } + }, + { + "type": "node", + "id": 11044270004, + "lat": 43.1488318, + "lon": 6.0334255, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "16", + "fee": "yes", + "name": "Ionity Chaberte", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "16", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11044323483, + "lat": 48.1660963, + "lon": 6.4460337, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "ABB", + "capacity": "2", + "charge": "0.25 EUR/kWh", + "charging_station:output": "120 kW", + "fee": "yes", + "operator": "ABB", + "operator:wikidata": "Q52825" + } + }, + { + "type": "node", + "id": 11045376157, + "lat": 45.2577908, + "lon": 4.0991275, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "contact@reseau-eborn.fr", + "fee": "yes", + "motorcar": "yes", + "network": "eborn", + "opening_hours": "24/7", + "operator": "SPBR1", + "owner": "SPBR1", + "payment:credit_cards": "yes", + "phone": "+33423100350", + "ref:EU:EVSE": "FR*EBN*PHQJOCGGRNM", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11045511976, + "lat": 48.3230178, + "lon": 0.0935062, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11045850706, + "lat": 47.5922435, + "lon": 6.7810515, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "100", + "fee": "yes", + "operator": "SIED70" + } + }, + { + "type": "node", + "id": 11046796948, + "lat": 45.8978352, + "lon": 0.919804, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Saint Junien", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11046831150, + "lat": 50.5871493, + "lon": 2.2920401, + "tags": { + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11047051103, + "lat": 45.2971257, + "lon": 6.5841508, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "1", + "covered": "yes", + "description": "Borne de recharge gratuite pour vélo", + "fee": "no", + "operator": "Sherpa" + } + }, + { + "type": "node", + "id": 11047237208, + "lat": 48.8654805, + "lon": 2.3655689, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11047964269, + "lat": 46.3144179, + "lon": 4.8392186, + "tags": { + "amenity": "charging_station", + "operator": "Shell Recharge Solutions", + "operator:wikidata": "Q105883058" + } + }, + { + "type": "node", + "id": 11047964270, + "lat": 46.314435, + "lon": 4.8391302, + "tags": { + "amenity": "charging_station", + "operator": "Shell Recharge Solutions", + "operator:wikidata": "Q105883058" + } + }, + { + "type": "node", + "id": 11048180247, + "lat": 46.003887, + "lon": 0.6731029, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "4", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*S16*PMB166914", + "socket:chademo": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11048187030, + "lat": 48.0909718, + "lon": -1.7028275, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ouest Charge" + } + }, + { + "type": "node", + "id": 11048218932, + "lat": 48.0909153, + "lon": -1.702921, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Ouest Charge" + } + }, + { + "type": "node", + "id": 11048540502, + "lat": 44.8037029, + "lon": 1.2147094, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "MobiVE", + "opening_hours": "24/7", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "owner": "MobiVE", + "payment:credit_cards": "no", + "phone": "+33972668001", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11048692661, + "lat": 46.8995686, + "lon": 6.3371117, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11048692662, + "lat": 46.89952, + "lon": 6.3371191, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11048750105, + "lat": 43.2831621, + "lon": 5.3746906, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "name": "La Recharge" + } + }, + { + "type": "node", + "id": 11049181501, + "lat": 48.1693531, + "lon": 6.4479369, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Modulo", + "capacity": "2", + "charge": "0.40 EUR/kWh", + "charging_station:output": "22 kW", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "Ville d'épinal", + "ref": "22", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1" + } + }, + { + "type": "node", + "id": 11049229735, + "lat": 48.6780351, + "lon": 2.1943593, + "tags": { + "amenity": "charging_station", + "brand": "Driveco", + "capacity": "2", + "fixme": "A vérifier sur place les tarifs pratiqués, et le nombre de places disponibles à l'intérieur du site (deux places donnent sur la rue et sont accessibles même si le garage est fermé)", + "operator": "Groupe Duffort" + } + }, + { + "type": "node", + "id": 11049327936, + "lat": 43.331995, + "lon": -0.3589516, + "tags": { + "amenity": "charging_station", + "manufacturer": "Schneider" + } + }, + { + "type": "node", + "id": 11049327937, + "lat": 43.3320026, + "lon": -0.3589907, + "tags": { + "amenity": "charging_station", + "manufacturer": "Schneider" + } + }, + { + "type": "node", + "id": 11049327938, + "lat": 43.3319872, + "lon": -0.3589081, + "tags": { + "amenity": "charging_station", + "manufacturer": "Schneider" + } + }, + { + "type": "node", + "id": 11049362503, + "lat": 46.6990842, + "lon": -1.4294042, + "tags": { + "amenity": "charging_station", + "fixme": "précision position, opérateur, prises et puissance dispo", + "operator": "Lidl" + } + }, + { + "type": "node", + "id": 11049363495, + "lat": 46.9711044, + "lon": -1.4100618, + "tags": { + "access": "unknown", + "amenity": "charging_station", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11049925976, + "lat": 49.6681265, + "lon": -1.4035832, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "socket:type2": "2" + } + }, + { + "type": "node", + "id": 11049954911, + "lat": 45.5410785, + "lon": 1.520482, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11051303998, + "lat": 43.1282935, + "lon": 0.9343491, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11052673507, + "lat": 43.5287002, + "lon": -1.1503833, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "10", + "fee": "yes", + "name": "Ionity Hastingues Sud", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "10", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11052918400, + "lat": 48.6325535, + "lon": -0.551439, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "territoire d'energie" + } + }, + { + "type": "node", + "id": 11052931907, + "lat": 50.2817287, + "lon": 3.9573167, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805024482", + "ref:EU:EVSE": "FR*H02*P59392006", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11054286903, + "lat": 43.725294, + "lon": -1.0738122, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11054286904, + "lat": 43.7252873, + "lon": -1.0737352, + "tags": { + "amenity": "charging_station", + "brand": "Power dot", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11054821466, + "lat": 48.7833958, + "lon": 2.2249367, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11055041084, + "lat": 50.2766352, + "lon": 3.9758262, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805022574", + "ref:EU:EVSE": "FR*H02*P59392001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11055653340, + "lat": 49.0741013, + "lon": 3.8783495, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11056160013, + "lat": 46.7752389, + "lon": 6.3550846, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "manufacturer": "Schneider", + "model": "EVLink" + } + }, + { + "type": "node", + "id": 11056372887, + "lat": 48.3619494, + "lon": 2.5742661, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "12", + "fee": "yes", + "name": "ENGIE Achères-la-Forêt", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50kW", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056415725, + "lat": 45.2476592, + "lon": 5.8683576, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Bois Claret", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056420666, + "lat": 45.0755807, + "lon": 5.2112497, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Gervans ouest", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056444878, + "lat": 45.0717674, + "lon": 5.2110332, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Gervans est", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056498371, + "lat": 50.2753043, + "lon": 3.9717938, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805025482", + "ref:EU:EVSE": "FR*H02*P59392002", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11056642389, + "lat": 43.9576678, + "lon": 1.3264768, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "15", + "fee": "yes", + "name": "ENGIE Bressols", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "15", + "socket:type2_combo:output": "160 kW" + } + }, + { + "type": "node", + "id": 11056662789, + "lat": 45.9027754, + "lon": 4.7285723, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Cheres ouest", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056684364, + "lat": 45.8445457, + "lon": 5.0698513, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "ENGIE Montuel", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056690285, + "lat": 45.9031618, + "lon": 4.7296044, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Cheres est", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11056857066, + "lat": 50.2776869, + "lon": 3.9782582, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805021955", + "ref:EU:EVSE": "FR*H02*P59392003", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11056904901, + "lat": 50.279389, + "lon": 3.9667973, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805023215", + "ref:EU:EVSE": "FR*H02*P59392004", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11056943079, + "lat": 46.35722, + "lon": 2.8028253, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "covered": "yes", + "fee": "yes", + "name": "ENGIE Allier Saulzet", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "payment:credit_cards": "yes", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW", + "source": "survey" + } + }, + { + "type": "node", + "id": 11056989525, + "lat": 48.5671779, + "lon": 7.5274105, + "tags": { + "amenity": "charging_station", + "bicycle": "yes" + } + }, + { + "type": "node", + "id": 11057112926, + "lat": 49.0022128, + "lon": 1.1530785, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "operator": "Lidl", + "operator:wikidata": "Q151954" + } + }, + { + "type": "node", + "id": 11057184222, + "lat": 45.5914526, + "lon": 5.2419189, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "website": "http://xfm.fr/UMVV1;http://xfm.fr/UMVV2" + } + }, + { + "type": "node", + "id": 11057184223, + "lat": 45.5911153, + "lon": 5.2414897, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "website": "http://xfm.fr/CHWM1;http://xfm.fr/CHWM2" + } + }, + { + "type": "node", + "id": 11057218226, + "lat": 46.7012079, + "lon": -1.4307754, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity La Roche Sur Yon", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11058133017, + "lat": 43.4010098, + "lon": 5.5775837, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Baume de Marron", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11058292374, + "lat": 43.4003429, + "lon": 5.5760205, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Peypin", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11058600907, + "lat": 46.4283739, + "lon": -0.5074792, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Deux Sèvres", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "10", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11058642041, + "lat": 46.4312059, + "lon": -0.50235, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Chateaudrie", + "network": "Engie", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "10", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11058781919, + "lat": 46.9071416, + "lon": 0.5223051, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Châtellerault-Antran", + "network": "Engie", + "note": "More precisem position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059006660, + "lat": 47.6635373, + "lon": 1.9294467, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "name": "ENGIE La Ferté Saint-Aubin", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "6", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11059012358, + "lat": 48.239352, + "lon": 1.082616, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Brou-Dampierre", + "network": "Engie", + "note": "More precise position needed", + "note 2": "2x 300kW and 4x 160 kW", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059019304, + "lat": 48.240473, + "lon": 1.0829746, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Manoirs du Perche", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059049851, + "lat": 46.9617587, + "lon": 4.8376194, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "ENGIE Beaune Merceuil", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059137188, + "lat": 47.1472917, + "lon": 5.5799961, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Dole Romange", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059151330, + "lat": 48.1654013, + "lon": 3.1728455, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Villeroy", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "160 kW" + } + }, + { + "type": "node", + "id": 11059165008, + "lat": 47.1052247, + "lon": 4.7140951, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE La Forêt", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059195162, + "lat": 47.1491736, + "lon": 5.5848815, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Dole Audelange", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059208130, + "lat": 47.788706, + "lon": 3.672875, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "ENGIE Venoy Soleil Levant", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059210331, + "lat": 48.2431239, + "lon": 3.5549586, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "name": "ENGIE Villeneuve l'Archevèque", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "90 kW", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059217161, + "lat": 48.2465408, + "lon": 3.5552905, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "name": "ENGIE Villeneuve Vauluisant", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "90 kW", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059270631, + "lat": 47.9768499, + "lon": 5.4978309, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Montigny-le-Roi", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059270709, + "lat": 48.0573761, + "lon": 4.9603249, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Châteauvillain Orges", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "90 kW", + "socket:type2_combo": "10", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059270710, + "lat": 48.0571948, + "lon": 4.9598579, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Chateauvillain Val Marnay", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "90 kW", + "socket:type2_combo": "10", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059273725, + "lat": 47.9742656, + "lon": 5.498382, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Montigny Val de Meuse", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "60 kW", + "socket:type2_combo": "10", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059274738, + "lat": 48.721143, + "lon": 7.6964228, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "ENGIE Brumath Est", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "9", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059279239, + "lat": 48.7237591, + "lon": 7.691991, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "ENGIE Brumath Ouest", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "9", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059367355, + "lat": 49.1325222, + "lon": 6.6601323, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Longeville-lès-Saint-Avold Sud", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059381215, + "lat": 49.1321541, + "lon": 6.6589228, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Longeville-lès-Saint-Avold Nord", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059408831, + "lat": 49.1795394, + "lon": 6.1764887, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Saint Rémy", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059483018, + "lat": 49.4498859, + "lon": 3.9250618, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Mont de Nizy", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059496194, + "lat": 49.4459058, + "lon": 3.9280485, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Champ Roland", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059500392, + "lat": 49.8862768, + "lon": 2.8371632, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "7", + "fee": "yes", + "name": "ENGIE Coeur des Hauts-de-France Ouest", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059547005, + "lat": 49.5185243, + "lon": 2.7196271, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "ENGIE Ressons Ouest", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "15", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059547419, + "lat": 49.320511, + "lon": 0.3196332, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Beuzeville Sud", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059551535, + "lat": 49.3246996, + "lon": 0.3279421, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Beuzeville Nord", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "7", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059553705, + "lat": 49.8071587, + "lon": 1.9690911, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "ENGIE Croixrault", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "3", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059556583, + "lat": 48.9415657, + "lon": 1.9512363, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "name": "ENGIE Morainvilliers Sud", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "11", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059563297, + "lat": 48.9417322, + "lon": 1.9542248, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "name": "ENGIE Morainvilliers Nord", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "11", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059566265, + "lat": 48.0845316, + "lon": 2.4730254, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Loiret", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "10", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059567673, + "lat": 48.6106645, + "lon": 2.6352488, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "9", + "fee": "yes", + "name": "ENGIE Galande La Mare Laroche", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "90 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059578853, + "lat": 50.3399631, + "lon": 3.4700898, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "ENGIE La Sentinelle Est", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "15", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059581188, + "lat": 50.5301496, + "lon": 3.0463018, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Phalempin Est", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "9", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059582157, + "lat": 50.3405426, + "lon": 3.4668903, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "ENGIE La Sentinelle Ouest", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "15", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059589014, + "lat": 50.5315161, + "lon": 3.0458901, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "name": "ENGIE Phalempin Ouest", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "9", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059590918, + "lat": 50.9348593, + "lon": 1.8129731, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "ENGIE Charles Dickens Eurotunnel", + "network": "Engie", + "note": "More precise position needed", + "opening_hours": "24/7", + "operator": "Engie", + "payment:contactless": "yes", + "socket:type2_combo": "8", + "socket:type2_combo:output": "210 kW" + } + }, + { + "type": "node", + "id": 11059612528, + "lat": 43.6273493, + "lon": 1.4322326, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Carrefour Market Minimes", + "operator": "Electra", + "payment:contactless": "yes", + "socket:type2": "1", + "socket:type2:output": "22 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11059633890, + "lat": 43.2172069, + "lon": 2.2206866, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "Electra - Arzens Sud", + "operator": "Electra", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059635869, + "lat": 43.2198996, + "lon": 2.2166215, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "16", + "fee": "yes", + "name": "Electra - Arzens Nord", + "operator": "Electra", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "100 kW", + "socket:type2_combo": "16", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11059848037, + "lat": 43.5293084, + "lon": -1.1499982, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "10", + "fee": "yes", + "name": "Ionity Hastingues Nord", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "10", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11060563518, + "lat": 50.405144, + "lon": 1.6013237, + "tags": { + "amenity": "charging_station", + "name": "Bornes de charge Carrefour" + } + }, + { + "type": "node", + "id": 11060612210, + "lat": 49.633937, + "lon": -1.6054888, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "operator": "Lidl", + "socket:type1_combo": "2", + "socket:type1_combo:output": "120 kW" + } + }, + { + "type": "node", + "id": 11062093037, + "lat": 49.1268309, + "lon": 6.1773637, + "tags": { + "amenity": "charging_station", + "capacity": "4" + } + }, + { + "type": "node", + "id": 11062586469, + "lat": 46.1575411, + "lon": 4.175123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "eborn" + } + }, + { + "type": "node", + "id": 11063248806, + "lat": 48.6738608, + "lon": 2.2166741, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS3012", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063248807, + "lat": 48.6887068, + "lon": 2.2061451, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Hyundai Les Ulis", + "ref:EU:EVSE": "FR*FR1*PVSSVCNY8HH", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063248808, + "lat": 48.7031361, + "lon": 2.1914788, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS2312", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063248809, + "lat": 48.842174, + "lon": 2.3233026, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*PPX14*06", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063252106, + "lat": 48.8105518, + "lon": 2.3444545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "La borne bleue", + "operator": "Bouygues Énergies et Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94037005", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063252107, + "lat": 48.8157623, + "lon": 2.3491591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "La borne bleue", + "operator": "Bouygues Énergies et Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94037004", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063252108, + "lat": 48.8935007, + "lon": 2.3800099, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "network": "QOVOLTIS", + "operator": "QOVOLTIS", + "owner": "JANEC EVS", + "ref:EU:EVSE": "FR*QOV*P7500014", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063252109, + "lat": 48.8540572, + "lon": 2.3455596, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*P9001*01", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063253305, + "lat": 48.6775943, + "lon": 2.1719134, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Unibail", + "operator": "Izivia", + "owner": "Unibail", + "ref:EU:EVSE": "FR*URW*PUNIB2121", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063253306, + "lat": 48.6780353, + "lon": 2.1943595, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "motorcar": "yes", + "network": "Volvo", + "ref:EU:EVSE": "FR*SSD*PDUFFORTVOLVO919401", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063253307, + "lat": 48.6780348, + "lon": 2.1942662, + "tags": { + "amenity": "charging_station", + "capacity": "18", + "fee": "yes", + "motorcar": "yes", + "network": "Volvo", + "ref:EU:EVSE": "FR*SSD*PDUFFORTVOLVO919401", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255705, + "lat": 48.6825884, + "lon": 2.2027588, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "network": "QOVOLTIS", + "operator": "QOVOLTIS", + "owner": "JANEC EVS", + "ref:EU:EVSE": "FR*QOV*P9100004", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255706, + "lat": 48.6595378, + "lon": 2.2428498, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS3112", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255707, + "lat": 48.6247636, + "lon": 2.1235988, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Commune de Briis sous Forge", + "ref:EU:EVSE": "FR*FR1*PIGWTYIK1QR", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255708, + "lat": 48.5835276, + "lon": 1.9867766, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*A05*PRMBT2111", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255709, + "lat": 48.7146664, + "lon": 2.14257, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS3211", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255710, + "lat": 48.7660866, + "lon": 2.1413308, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE30311", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255711, + "lat": 48.8430072, + "lon": 2.3280367, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "motorcar": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*PPX06*08", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063255712, + "lat": 48.8411982, + "lon": 2.3238907, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "motorcar": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*P9014*03", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259405, + "lat": 48.6352778, + "lon": 2.1494307, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "VINCI Autoroutes", + "operator": "VINCI Autoroutes", + "owner": "Cofiroute", + "ref:EU:EVSE": "FR*ECH*PLBQU7ZYMGE", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259406, + "lat": 48.5532622, + "lon": 1.9127798, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT2312", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259407, + "lat": 48.6836784, + "lon": 2.2367887, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS1312", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259408, + "lat": 48.6969517, + "lon": 2.159425, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS2112", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259409, + "lat": 48.7117286, + "lon": 2.2435713, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS1612", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259410, + "lat": 48.816784, + "lon": 2.3599201, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "ELECTRA", + "operator": "ELECTRA", + "owner": "ELECTRA", + "ref:EU:EVSE": "FR*ELC*PPARIIT", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259411, + "lat": 48.8135845, + "lon": 2.3502642, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "La borne bleue", + "operator": "Bouygues Énergies et Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94037001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259412, + "lat": 48.8916588, + "lon": 2.3775939, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "7", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*PPX19*12", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259505, + "lat": 48.6366323, + "lon": 2.1480779, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "VINCI Autoroutes", + "operator": "VINCI Autoroutes", + "owner": "Cofiroute", + "ref:EU:EVSE": "FR*ECH*PEDDAPFHUIB", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259506, + "lat": 48.8959995, + "lon": 2.3872411, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P75119001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259507, + "lat": 50.0634182, + "lon": 1.3882886, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PTCSM2FPN91", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259508, + "lat": 49.8914002, + "lon": 2.2979202, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PDLEYBP", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259509, + "lat": 50.7412386, + "lon": 3.1404001, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Decathlon", + "ref:EU:EVSE": "FR*SSD*PCEETRUS596562", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259510, + "lat": 49.4450767, + "lon": 1.0800652, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259511, + "lat": 49.4470107, + "lon": 1.0658133, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Hyundai Rouen - JFC Normandie", + "ref:EU:EVSE": "FR*SSD*PJFCHYUNDAI760001", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259512, + "lat": 49.4472579, + "lon": 1.0684023, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Volvo Rouen Thibaut SAS", + "ref:EU:EVSE": "FR*SSD*PTHIBAUTVOLVO760001", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259513, + "lat": 49.4304658, + "lon": 1.0523862, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76498001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259514, + "lat": 49.4266698, + "lon": 1.0624337, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76498002", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259515, + "lat": 49.4864126, + "lon": 1.0188317, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Deux Roues", + "ref:EU:EVSE": "FR*FR1*PM3QO1Y3NBX", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063259516, + "lat": 49.4816939, + "lon": 1.0137731, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "CLOS DE LA VAUPALIERE", + "operator": "E-TOTEM", + "owner": "CLOS DE LA VAUPALIERE", + "ref:EU:EVSE": "FR*G10*P76150A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260105, + "lat": 48.6160304, + "lon": 2.0280075, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT911", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260106, + "lat": 48.6210519, + "lon": 2.0007563, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT1011", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260107, + "lat": 48.6880849, + "lon": 2.2081245, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "BMW", + "ref:EU:EVSE": "FR*SSD*PFOURNIERBMW911401", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260108, + "lat": 48.8385745, + "lon": 2.3220071, + "tags": { + "amenity": "charging_station", + "capacity": "13", + "fee": "yes", + "motorcar": "yes", + "network": "Unibail", + "operator": "Izivia", + "owner": "Unibail", + "ref:EU:EVSE": "FR*URW*PUNIB3271", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260109, + "lat": 48.8128692, + "lon": 2.357069, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE2511", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260110, + "lat": 48.816784, + "lon": 2.35992, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063260111, + "lat": 48.8991452, + "lon": 2.4078512, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Point P, Halle de Pantin Public", + "ref:EU:EVSE": "FR*FR1*PCBMQXCFJ9L", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260112, + "lat": 48.8578801, + "lon": 2.3468102, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "motorcar": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*PPX01*06", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260113, + "lat": 49.9067159, + "lon": 1.1049031, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Kia", + "ref:EU:EVSE": "FR*SSD*PMOTORSKIA763701", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260114, + "lat": 49.905593, + "lon": 1.1091605, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PBRCRXB", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260115, + "lat": 50.1882407, + "lon": 1.6324729, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Relai guillaume de Normandy", + "ref:EU:EVSE": "FR*FR1*PAZ7U5AZUP6", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260116, + "lat": 49.8918006, + "lon": 2.3078692, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PAWXSQD", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260117, + "lat": 49.8923, + "lon": 2.3078397, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PQGBZJG", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260118, + "lat": 49.8897996, + "lon": 2.2906011, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PTCYXHU", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260119, + "lat": 49.9049037, + "lon": 2.2738481, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR25", + "ref:EU:EVSE": "FR*FR1*PSKVQPRSH7U", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063260120, + "lat": 50.5262783, + "lon": 1.5890265, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Touquet Normal", + "ref:EU:EVSE": "FR*FR1*PQAHLNICPOS", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269705, + "lat": 48.8377342, + "lon": 2.3225818, + "tags": { + "amenity": "charging_station", + "capacity": "14", + "fee": "yes", + "motorcar": "yes", + "network": "Unibail", + "operator": "Izivia", + "owner": "Unibail", + "ref:EU:EVSE": "FR*URW*PUNIB35251", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269706, + "lat": 49.9235226, + "lon": 1.0748738, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P76217002", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269707, + "lat": 49.9110947, + "lon": 1.0838807, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PITMRXB", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269708, + "lat": 49.9065811, + "lon": 1.1040401, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Hyundai", + "ref:EU:EVSE": "FR*SSD*PHYUNDAIDIEPPE763701", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269709, + "lat": 50.0732991, + "lon": 1.4528507, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PSTQUENTEGLISE", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269710, + "lat": 50.0887037, + "lon": 1.4812231, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PBEEUFP", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269711, + "lat": 49.8913997, + "lon": 2.2979692, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PDXDFXN", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269712, + "lat": 49.8897477, + "lon": 2.3034811, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "operator": "Bouygues Énergies et Services", + "owner": "INSEE", + "ref:EU:EVSE": "FR*Z21*P80021001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269713, + "lat": 49.8912001, + "lon": 2.3109698, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PNUUUFQ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269714, + "lat": 50.5236318, + "lon": 1.5804648, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Touquet Normal", + "ref:EU:EVSE": "FR*FR1*PIOMGH1LYJJ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269715, + "lat": 50.7417698, + "lon": 3.1438199, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Auchan", + "ref:EU:EVSE": "FR*SSD*PCEETRUS596561", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269716, + "lat": 50.7560339, + "lon": 3.1632149, + "tags": { + "amenity": "charging_station", + "capacity": "7", + "motorcar": "yes", + "network": "QOVOLTIS", + "operator": "QOVOLTIS", + "owner": "JANEC EVS", + "ref:EU:EVSE": "FR*QOV*P5900001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269717, + "lat": 49.7890779, + "lon": 0.9968376, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Carrefour Contact Bacqueville En Caux", + "ref:EU:EVSE": "FR*FR1*PKVSPKBVOHL", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063269718, + "lat": 49.7343825, + "lon": 1.4327717, + "tags": { + "amenity": "charging_station", + "capacity": "10", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Neufchâtel-en-Bray", + "ref:EU:EVSE": "FR*LE2*PHL3QNBDPQC", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270005, + "lat": 48.8165553, + "lon": 2.3606095, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "Total Charge Rapide", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*HPC*PNF059511", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270006, + "lat": 48.8143087, + "lon": 2.3410293, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "La borne bleue", + "operator": "Bouygues Énergies et Services", + "owner": "SIPPEREC", + "ref:EU:EVSE": "FR*SIP*P94037002", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270007, + "lat": 48.8619974, + "lon": 2.3461765, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Unibail", + "operator": "Izivia", + "owner": "Unibail", + "ref:EU:EVSE": "FR*URW*PUNIB2941", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270008, + "lat": 48.8588105, + "lon": 2.3449507, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "6", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Belib'", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*V75*PPX01*03", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270009, + "lat": 49.9230999, + "lon": 1.0759802, + "tags": { + "amenity": "charging_station", + "capacity": "14", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P76217001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270010, + "lat": 49.9190533, + "lon": 1.0856321, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Station Marchand", + "ref:EU:EVSE": "FR*FR1*PPMNDERSS7U", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270012, + "lat": 49.8878002, + "lon": 2.2952601, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PBPJAZA", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270405, + "lat": 48.816977, + "lon": 2.3593958, + "tags": { + "amenity": "charging_station", + "capacity": "14", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P75113003", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270406, + "lat": 50.0636959, + "lon": 1.4617825, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PZSEFWZ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270407, + "lat": 49.8924987, + "lon": 2.300241, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PSZJUJC", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270408, + "lat": 49.8698573, + "lon": 2.3054981, + "tags": { + "amenity": "charging_station", + "capacity": "14", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Crédit Agricole Amiens", + "ref:EU:EVSE": "FR*FR1*PNPHZOEZONW", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270409, + "lat": 50.5261691, + "lon": 1.5811676, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Touquet Normal", + "ref:EU:EVSE": "FR*FR1*PGPB1IX5XMY", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270410, + "lat": 50.7427152, + "lon": 3.1396222, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Kiabi", + "ref:EU:EVSE": "FR*SSD*PCEETRUS596563", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270411, + "lat": 50.7440205, + "lon": 3.14603, + "tags": { + "amenity": "charging_station", + "capacity": "24", + "fee": "yes", + "motorcar": "yes", + "network": "nhood59960*1", + "ref:EU:EVSE": "FR*SSD*PNHOOD599601", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270412, + "lat": 49.431509, + "lon": 1.1035413, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540014", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270413, + "lat": 49.4433119, + "lon": 1.0987642, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540010", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270414, + "lat": 49.447921, + "lon": 1.072433, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Audi Rouen", + "ref:EU:EVSE": "FR*FR1*PLL76TVKIP4", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270415, + "lat": 49.4401116, + "lon": 1.0752882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540018", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063270416, + "lat": 49.4691002, + "lon": 1.0507607, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76216001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274005, + "lat": 48.9017054, + "lon": 2.387799, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "METROPOLIS", + "operator": "SPIE CityNetworks", + "owner": "METROPOLIS", + "ref:EU:EVSE": "FR*MGP*P93001D", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274006, + "lat": 49.894199, + "lon": 2.2863579, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PBXBPRQ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274007, + "lat": 49.9366102, + "lon": 1.6273928, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PEYMSLB", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274008, + "lat": 50.0311703, + "lon": 1.3976026, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Etalondes", + "ref:EU:EVSE": "FR*LE2*PZAJRFADFMD", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274009, + "lat": 49.6451799, + "lon": 1.0463619, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Vallée Carburant, Castres Equipement", + "ref:EU:EVSE": "FR*FR1*PKIDYA8RB2N", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274010, + "lat": 49.4406261, + "lon": 1.1026347, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540021", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274011, + "lat": 49.4374867, + "lon": 1.1123899, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540022", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274012, + "lat": 49.4469863, + "lon": 1.069783, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Groupe Mary Automobile Rouen public", + "ref:EU:EVSE": "FR*FR1*PXDCMNUFZH1", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274013, + "lat": 49.4858481, + "lon": 1.0196096, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDS Immo", + "ref:EU:EVSE": "FR*FR1*PALEJNTJITP", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274014, + "lat": 49.479167, + "lon": 1.0238743, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76410003", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274015, + "lat": 46.9694473, + "lon": -2.2349882, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85106A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274016, + "lat": 47.0017836, + "lon": -2.2472218, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "PROPERPHI", + "operator": "ProperPhi", + "owner": "The Corner", + "ref:EU:EVSE": "FR*PHI*PTHECORNER", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063274017, + "lat": 46.9149716, + "lon": -2.0408177, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85018A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278605, + "lat": 50.1836037, + "lon": 1.6364908, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PSTVALERYSTPIER", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278606, + "lat": 49.8965, + "lon": 2.3009397, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PRCDEAM", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278607, + "lat": 50.7436114, + "lon": 3.1344777, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "L'Occasion Valauto", + "ref:EU:EVSE": "FR*SSD*PVALAUTOHYUNDAI592231", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278608, + "lat": 49.8905979, + "lon": 1.7177725, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PSENARPAUM", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278610, + "lat": 49.4385733, + "lon": 1.0913372, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "operator": "Bouygues Énergies et Services", + "owner": "INSEE", + "ref:EU:EVSE": "FR*Z21*P76540001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278611, + "lat": 49.4214629, + "lon": 1.0815552, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PITMRON", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278612, + "lat": 49.7261819, + "lon": 0.3646705, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Fécamp Saint-Léonard", + "ref:EU:EVSE": "FR*LE2*PL0KOZZ2ARU", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278613, + "lat": 49.5357928, + "lon": 0.3653812, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PMBRSRC", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278614, + "lat": 46.9419124, + "lon": -2.1766663, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85011A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278615, + "lat": 46.8849302, + "lon": -2.1193743, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85012B", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278616, + "lat": 46.8802205, + "lon": -2.1194869, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85012A", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278617, + "lat": 46.8532285, + "lon": -1.8937737, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Burger King Challans", + "ref:EU:EVSE": "FR*FR1*PODWORPPTTT", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278618, + "lat": 46.848151, + "lon": -1.8795741, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85047D", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278619, + "lat": 46.8456506, + "lon": -1.8802795, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85047B", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278621, + "lat": 46.8486463, + "lon": -1.8719459, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85047A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063278622, + "lat": 46.8569043, + "lon": -1.868062, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CHALLANS AUTOMOBILES", + "operator": "TotalEnergies", + "owner": "CHALLANS AUTOMOBILES", + "ref:EU:EVSE": "FR*TCB*P00774", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279705, + "lat": 49.8895002, + "lon": 2.3058897, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PYGXHDL", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279706, + "lat": 49.8964002, + "lon": 2.3009411, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PVYXQKS", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279707, + "lat": 50.7421195, + "lon": 3.1414488, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Salade & Co", + "ref:EU:EVSE": "FR*SSD*PCEETRUS596564", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279709, + "lat": 49.4373227, + "lon": 1.1127707, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76540022", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279710, + "lat": 49.5025275, + "lon": 1.1569977, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PITMINV", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279711, + "lat": 46.7276989, + "lon": -2.3501797, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85113B", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063279712, + "lat": 48.3780493, + "lon": -4.5439839, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "owner": "RD Brest", + "ref:EU:EVSE": "FR*M29*P29019001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063295005, + "lat": 49.4580828, + "lon": 1.0445595, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Bapeaume-les-Rouen", + "ref:EU:EVSE": "FR*LE2*PFD8OWVSZIC", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063295006, + "lat": 46.724315, + "lon": -2.3475337, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85113A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063295007, + "lat": 48.383497, + "lon": -4.485324, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "RD Brest", + "ref:EU:EVSE": "FR*M29*P29019003", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063295008, + "lat": 48.3876225, + "lon": -4.5224404, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "owner": "RD Brest", + "ref:EU:EVSE": "FR*M29*P29019006", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063295009, + "lat": 48.3882178, + "lon": -4.4351862, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "owner": "RD Brest", + "ref:EU:EVSE": "FR*M29*P29019005", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063295010, + "lat": 48.2458379, + "lon": -4.3179783, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "operator": "Izivia", + "owner": "Ouest Charge", + "ref:EU:EVSE": "FR*S29*PSD29111", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063297505, + "lat": 49.5069308, + "lon": 1.0393667, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Métropole Rouen Normandie", + "operator": "Bouygues Énergies et Services", + "owner": "Métropole Rouen Normandie", + "ref:EU:EVSE": "FR*C01*P76366001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063297506, + "lat": 49.7543356, + "lon": 0.3730416, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Carrefour Energies", + "operator": "Allego", + "owner": "EV Cars", + "ref:EU:EVSE": "FR*ALL*PEVCARSFCAMP", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063297507, + "lat": 47.000671, + "lon": -2.2494701, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85163A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063297508, + "lat": 46.8611117, + "lon": -1.8644786, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85047C", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063297509, + "lat": 46.83122, + "lon": -2.1317339, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85164A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063297510, + "lat": 48.3861048, + "lon": -4.5324183, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR15", + "ref:EU:EVSE": "FR*FR1*PEHGQLKGHD4", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063298505, + "lat": 49.7260883, + "lon": 0.36551, + "tags": { + "amenity": "charging_station", + "capacity": "20", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Fécamp Saint-Léonard", + "ref:EU:EVSE": "FR*LE2*PMMIX8ETSRI", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063298506, + "lat": 48.3872377, + "lon": -4.4829261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "owner": "RD Brest", + "ref:EU:EVSE": "FR*M29*P29019002", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063298508, + "lat": 48.3881929, + "lon": -4.4360002, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "owner": "RD Brest", + "ref:EU:EVSE": "FR*M29*P29019004", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063300305, + "lat": 46.8547326, + "lon": -1.9029093, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Hyundai Challans - Océane Auto", + "ref:EU:EVSE": "FR*SSD*POCEANEHYUNDAI853001", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063300307, + "lat": 48.2753674, + "lon": -4.5955038, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "operator": "Izivia", + "owner": "Ouest Charge", + "ref:EU:EVSE": "FR*S29*PSD291511", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063300308, + "lat": 48.3881746, + "lon": -4.526732, + "tags": { + "amenity": "charging_station", + "bicycle": "yes", + "capacity": "10", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "Carrefour Energies", + "operator": "Allego", + "owner": "EV Cars", + "ref:EU:EVSE": "FR*ALL*PEVCARSBREST", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063302806, + "lat": 48.2753638, + "lon": -4.5954971, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ouest Charge", + "operator": "Izivia", + "owner": "Ouest Charge", + "ref:EU:EVSE": "FR*S29*PSD291512", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063358306, + "lat": 46.4812257, + "lon": -1.7591, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85060B", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063360405, + "lat": 46.7900114, + "lon": 3.9706993, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BFC-SIEEEN", + "ref:EU:EVSE": "FR*FR1*PN9LEAC2WWK", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063361905, + "lat": 46.68878, + "lon": 4.356637, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR12", + "ref:EU:EVSE": "FR*FR1*PTJYKIGXR01", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063361906, + "lat": 46.6827117, + "lon": 4.3726639, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Montceau-les-Mines parking hyper", + "ref:EU:EVSE": "FR*LE2*PG5WSCVUOGV", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063364605, + "lat": 46.6826399, + "lon": 4.372855, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Montceau-les-Mines parking location", + "ref:EU:EVSE": "FR*FR1*PDV6PHDO51M", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063364606, + "lat": 47.0532974, + "lon": 3.6550033, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BFC-SIEEEN", + "ref:EU:EVSE": "FR*FR1*PLII6X0QIDC", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063364607, + "lat": 48.6810583, + "lon": 1.6486681, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT3211", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063364608, + "lat": 48.7188136, + "lon": 1.3748695, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Dreux Motors", + "ref:EU:EVSE": "FR*FR1*PG3DXGKYHRM", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063369605, + "lat": 46.9986949, + "lon": 3.3930159, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BFC-SIEEEN", + "ref:EU:EVSE": "FR*FR1*PCRSMVV007E", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063369606, + "lat": 48.6738072, + "lon": 2.1376093, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "no", + "motorcar": "yes", + "network": "Opel", + "ref:EU:EVSE": "FR*SSD*PAEROAUTOOPEL919401", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063369607, + "lat": 48.6740521, + "lon": 2.1378648, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Kia", + "ref:EU:EVSE": "FR*SSD*PAEROAUTOKIA919401", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063369608, + "lat": 48.6772011, + "lon": 2.1343189, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS411", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063369609, + "lat": 48.6879654, + "lon": 2.1167994, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS3912", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063371405, + "lat": 47.0444007, + "lon": 4.0213019, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BFC-SIEEEN", + "ref:EU:EVSE": "FR*FR1*PA0MTYFQTIA", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063371406, + "lat": 47.0773995, + "lon": 4.0985978, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BFC-SYDESL", + "ref:EU:EVSE": "FR*FR1*PIOUZSC0GRQ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063383705, + "lat": 48.7628654, + "lon": 2.0558059, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "CPO Alizé Liberté Public", + "operator": "Bouygues Énergies et Services", + "owner": "CA de Saint-Quentin-en-Yvelines", + "ref:EU:EVSE": "FR*BE1*P78688001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063383706, + "lat": 48.7174794, + "lon": 1.3710447, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PIMCVER", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063383707, + "lat": 46.513929, + "lon": -1.7705154, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Hôtel Ibis Styles Les Sables d'Olonne", + "ref:EU:EVSE": "FR*FR1*PEJISQ1M00E", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063383708, + "lat": 46.5047655, + "lon": -1.737535, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85060A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385105, + "lat": 48.719848, + "lon": 1.3707805, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BMW, Dreux", + "ref:EU:EVSE": "FR*FR1*PYZPNMKUCFN", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385106, + "lat": 46.5341557, + "lon": -1.773262, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85166B", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385107, + "lat": 46.4993902, + "lon": -1.78418, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85194A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385108, + "lat": 46.5064123, + "lon": -1.7701936, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85166A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385109, + "lat": 46.51387, + "lon": -1.7762446, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR07", + "ref:EU:EVSE": "FR*FR1*PHTOS6OHD33", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385110, + "lat": 46.5145529, + "lon": -1.778495, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85166C", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385111, + "lat": 46.5019501, + "lon": -1.7961305, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85194C", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385112, + "lat": 46.4648519, + "lon": -1.6179729, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85288A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385506, + "lat": 48.7316743, + "lon": 1.3696754, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PIBSDRX", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063385507, + "lat": 45.0397413, + "lon": 3.0567098, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PBIOSFL", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063393405, + "lat": 49.2609153, + "lon": 3.9642057, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR25", + "ref:EU:EVSE": "FR*FR1*PBYDGEFUMKN", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063393406, + "lat": 46.497181, + "lon": -1.7818706, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85194D", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063393407, + "lat": 47.2653103, + "lon": -1.4894199, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "Total Charge Rapide", + "operator": "TotalEnergies", + "owner": "TotalEnergies", + "ref:EU:EVSE": "FR*HPC*PNF010132", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063396206, + "lat": 46.4940494, + "lon": -1.7957282, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85194B", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063396207, + "lat": 46.4995591, + "lon": -1.7820382, + "tags": { + "amenity": "charging_station", + "capacity": "10", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P85194001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063396208, + "lat": 46.5140066, + "lon": -1.7778935, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Sables d'Olonne", + "ref:EU:EVSE": "FR*FR1*PXPTGCMDV0U", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063398205, + "lat": 46.5420762, + "lon": -1.7749787, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85166D", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063398206, + "lat": 46.4945295, + "lon": -1.7725968, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SYDEV", + "operator": "SPIE CityNetworks", + "owner": "SYDEV", + "ref:EU:EVSE": "FR*S85*P85194E", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063414505, + "lat": 46.6533983, + "lon": -1.4444768, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Garage Phelippeau", + "ref:EU:EVSE": "FR*FR1*PRP1ODR0UNU", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063414506, + "lat": 47.2142338, + "lon": -1.5395853, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "operator": "Bouygues Énergies et Services", + "owner": "UMR", + "ref:EU:EVSE": "FR*Z18*P44109001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063414507, + "lat": 47.2114207, + "lon": -1.6162884, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR07", + "ref:EU:EVSE": "FR*FR1*PC2QSB9HMEI", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063414508, + "lat": 47.2428229, + "lon": -1.5278721, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR07", + "ref:EU:EVSE": "FR*FR1*PAZAJKTPA3O", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063414509, + "lat": 47.2509072, + "lon": -1.5084529, + "tags": { + "amenity": "charging_station", + "capacity": "12", + "fee": "yes", + "motorcar": "yes", + "network": "BEST WESTERN NANTES", + "operator": "TotalEnergies", + "owner": "Perseverance", + "ref:EU:EVSE": "FR*TCB*P00989", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063415505, + "lat": 47.2077474, + "lon": -1.5374637, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "operator": "Bouygues Énergies et Services", + "owner": "CEREMA", + "ref:EU:EVSE": "FR*Z15*P44109001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063415506, + "lat": 47.1932704, + "lon": -1.5720105, + "tags": { + "amenity": "charging_station", + "capacity": "28", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E. Leclerc, Rezé", + "ref:EU:EVSE": "FR*LE2*PSSPQRIGGGG", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063415507, + "lat": 47.3446388, + "lon": -3.1539989, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PYCX0MN1QXX", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417005, + "lat": 47.6379, + "lon": -2.7639896, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies Normale Proximité", + "ref:EU:EVSE": "FR*S56*PGRGKRU", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417006, + "lat": 47.1979215, + "lon": -1.5917945, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Lidl DR07", + "ref:EU:EVSE": "FR*FR1*PMIGOKDUUYZ", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417007, + "lat": 47.2494507, + "lon": -1.4845169, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "SYDELA", + "operator": "SPIE CityNetworks", + "owner": "SYDELA", + "ref:EU:EVSE": "FR*S44*P44172A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417008, + "lat": 47.2698896, + "lon": -1.4989471, + "tags": { + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Axians - Carquefou", + "ref:EU:EVSE": "FR*FR1*PWRBRGD5HQU", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417009, + "lat": 47.2300602, + "lon": -1.6335297, + "tags": { + "amenity": "charging_station", + "capacity": "3", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Ouest Location", + "ref:EU:EVSE": "FR*FR1*PAHSA5KVF5H", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417010, + "lat": 47.3683037, + "lon": -3.2229745, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*POTFVUHHRFE", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063417011, + "lat": 47.3759474, + "lon": -3.2206357, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PCGGCRTEPRZ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426505, + "lat": 47.3472499, + "lon": -3.1568058, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PPWIHLJMHAB", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426506, + "lat": 47.3490986, + "lon": -3.1592077, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PHFVGTE", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426507, + "lat": 47.2945703, + "lon": -3.0849695, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PTI8PEKPXSF", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426508, + "lat": 50.036966, + "lon": 1.4728546, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PHLQJWN", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426509, + "lat": 49.4906536, + "lon": 1.601944, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Seymaborne (SEY78)", + "operator": "Bouygues Énergies et Services", + "owner": "Ville de FRENEUSE", + "ref:EU:EVSE": "FR*Y34*P78255001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426705, + "lat": 47.3464444, + "lon": -3.1547794, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PCVA0LBMFFS", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426706, + "lat": 47.360746, + "lon": -3.1861854, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Morbihan énergies FlexMob'Île", + "ref:EU:EVSE": "FR*S56*PBD9SBFG89K", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426707, + "lat": 49.3998031, + "lon": 1.4790344, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "SIEGE61", + "operator": "SIEGE 27", + "owner": "SIEGE 27", + "ref:EU:EVSE": "FR*S27*PLYONSFOURACHAUX", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426708, + "lat": 49.9068523, + "lon": 1.1042976, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Opel", + "ref:EU:EVSE": "FR*SSD*PMVAUTOOPEL763701", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063426709, + "lat": 49.9856967, + "lon": 1.5613031, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PGAMACHESMAIRIE", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063428905, + "lat": 50.0717016, + "lon": 1.5415782, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "FDE80", + "ref:EU:EVSE": "FR*S80*PWOINCOURTKLEB", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063428906, + "lat": 49.5087143, + "lon": 1.2586212, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Au Panier de la Pommeraye", + "ref:EU:EVSE": "FR*FR1*PACRYNFDCV8", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063443943, + "lat": 49.1515215, + "lon": 6.1505653, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Technolia", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "Freshmile", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11063446205, + "lat": 50.9973809, + "lon": 2.1229856, + "tags": { + "amenity": "charging_station", + "network": "lastmilesolutions", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063446206, + "lat": 50.9870292, + "lon": 2.1255488, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063448505, + "lat": 50.9887007, + "lon": 2.1109677, + "tags": { + "amenity": "charging_station", + "motorcar": "yes", + "network": "izivia", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 11063484106, + "lat": 50.9869969, + "lon": 2.1253725, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063484107, + "lat": 50.9858863, + "lon": 2.1212977, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063484108, + "lat": 50.9973959, + "lon": 2.1229634, + "tags": { + "amenity": "charging_station", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063484206, + "lat": 50.9874253, + "lon": 2.1316945, + "tags": { + "amenity": "charging_station", + "note": "7kw", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063484207, + "lat": 50.9896239, + "lon": 2.1232466, + "tags": { + "amenity": "charging_station", + "note": "22kw *2", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063484208, + "lat": 50.9888679, + "lon": 2.1111111, + "tags": { + "amenity": "charging_station", + "fixme": "Position approximative", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:typee": "yes" + } + }, + { + "type": "node", + "id": 11063493805, + "lat": 50.9878382, + "lon": 2.1227372, + "tags": { + "amenity": "charging_station", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063493806, + "lat": 50.9850385, + "lon": 2.1245301, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063493807, + "lat": 50.9838582, + "lon": 2.1169979, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063493808, + "lat": 48.5420688, + "lon": 3.4596634, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77072A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063493809, + "lat": 48.5312707, + "lon": 3.3695412, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "non_renseigné", + "operator": "Bouygues Énergies et Services", + "owner": "CEREMA", + "ref:EU:EVSE": "FR*Z15*P77459001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063493810, + "lat": 48.4827077, + "lon": 3.2507515, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77076A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063497205, + "lat": 50.9840645, + "lon": 2.1228993, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11063497206, + "lat": 50.9900432, + "lon": 2.148997, + "tags": { + "amenity": "charging_station", + "note": "22kw", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063497207, + "lat": 48.4922221, + "lon": 3.4981263, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEA (Syndicat départemental d'énergie de l'Aube) Public", + "ref:EU:EVSE": "FR*S10*PHSYIJGUBSD", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063497208, + "lat": 48.4935624, + "lon": 3.5111752, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEA (Syndicat départemental d'énergie de l'Aube) Public", + "ref:EU:EVSE": "FR*S10*PS5GFRFHWSW", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063497209, + "lat": 48.5559608, + "lon": 3.3034945, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "ComCom du Provinois", + "ref:EU:EVSE": "FR*FR1*PAVYDUIQNKS", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063502105, + "lat": 50.9931535, + "lon": 2.1405241, + "tags": { + "amenity": "charging_station", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11063502107, + "lat": 48.6428077, + "lon": 2.2298008, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Sigeif", + "operator": "Izivia", + "owner": "Sigeif", + "ref:EU:EVSE": "FR*SIG*PSIGE28612", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063502108, + "lat": 48.6160304, + "lon": 2.0280075, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT912", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063504205, + "lat": 48.493278, + "lon": 3.5028101, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEA (Syndicat départemental d'énergie de l'Aube) Public", + "ref:EU:EVSE": "FR*S10*PJBVMTPZMH6", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063504206, + "lat": 48.5529071, + "lon": 3.2980871, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Renault", + "ref:EU:EVSE": "FR*SSD*PMAURINRENAULT771601", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063505105, + "lat": 48.4952208, + "lon": 3.5023588, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEA (Syndicat départemental d'énergie de l'Aube) Public", + "ref:EU:EVSE": "FR*S10*PSK1TRPWVYS", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063505106, + "lat": 48.6775783, + "lon": 2.1719509, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "motorcar": "yes", + "network": "Unibail", + "operator": "Izivia", + "owner": "Unibail", + "ref:EU:EVSE": "FR*URW*PUNIB2112", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063505107, + "lat": 48.6738608, + "lon": 2.2166634, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS3011", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063505605, + "lat": 48.5110323, + "lon": 3.4347725, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEA (Syndicat départemental d'énergie de l'Aube) Public", + "ref:EU:EVSE": "FR*S10*PFIFWQ1FUV1", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063505607, + "lat": 48.5782397, + "lon": 1.9903654, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT2212", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063507105, + "lat": 48.5407333, + "lon": 3.5001326, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "SDEA (Syndicat départemental d'énergie de l'Aube) Public", + "ref:EU:EVSE": "FR*S10*PEOSAEXVXOL", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063507106, + "lat": 48.6836666, + "lon": 2.2368067, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS1311", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063507107, + "lat": 48.5799575, + "lon": 2.0009708, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Châteauform De Rochefort", + "ref:EU:EVSE": "FR*FR1*PO0NVYCD3RW", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063512005, + "lat": 48.4528304, + "lon": 3.3510876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Ecocharge77", + "operator": "Izivia", + "owner": "SDESM", + "ref:EU:EVSE": "FR*S77*P77341A", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063517664, + "lat": 48.571835, + "lon": 1.9420561, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*A05*PRMBT711", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063517665, + "lat": 48.5728608, + "lon": 1.937499, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "sav@izivia.com", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "opening_hours": "24/7", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "payment:credit_cards": "no", + "phone": "+33972668001", + "ref:EU:EVSE": "FR*A05*PRMBT2511", + "socket:type2": "1", + "socket:typee": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063517666, + "lat": 48.5724792, + "lon": 1.9383144, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "3", + "email": "hello@powerdot.fr", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "opening_hours": "24/7", + "operator": "Power Dot France", + "owner": "Power Dot France", + "payment:credit_cards": "no", + "phone": "+33176310684", + "ref:EU:EVSE": "FR*PD1*PSYUSAN", + "socket:chademo": "1", + "socket:type2": "1", + "socket:type2_combo": "1", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11063729950, + "lat": 45.8549055, + "lon": 4.839666, + "tags": { + "amenity": "charging_station", + "brand": "Hypercharger", + "capacity": "2", + "motorcar": "yes", + "network": "Eni", + "network:website": "Plenitude;Becharge", + "socket:type2": "1", + "socket:type2:output": "24 kW", + "socket:type2_combo": "2" + } + }, + { + "type": "node", + "id": 11063765176, + "lat": 45.8776473, + "lon": 4.8384677, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "network": "Izivia Grand Lyon", + "network:website": "https://grandlyon.izivia.com/", + "ref": "NEU01A", + "socket:type2:output": "7.4 kW" + } + }, + { + "type": "node", + "id": 11063872812, + "lat": 45.6078626, + "lon": 4.0909642, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "e totem", + "ref": "FR*SUA*E42299*A*3*2", + "socket:schuko": "1", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11063872813, + "lat": 45.6078466, + "lon": 4.0909025, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "e totem", + "ref": "FR*SUA*E42299*A*3*1", + "socket:type2": "2", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11063877746, + "lat": 45.6078734, + "lon": 4.0908891, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "e totem", + "ref": "FR*SUA*E42299*A*3*2", + "socket:schuko": "1", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11063877747, + "lat": 45.6078893, + "lon": 4.0909508, + "tags": { + "access": "yes", + "amenity": "charging_station", + "authentication:nfc": "yes", + "authentication:website": "yes", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "motorcycle": "yes", + "network": "e totem", + "ref": "FR*SUA*E42299*A*1*1", + "socket:schuko": "1", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "1" + } + }, + { + "type": "node", + "id": 11064410969, + "lat": 48.0496811, + "lon": 6.1058898, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11064410970, + "lat": 48.0496229, + "lon": 6.1059729, + "tags": { + "access": "customers", + "amenity": "charging_station", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11064555824, + "lat": 48.0894605, + "lon": -1.6333577, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11064555825, + "lat": 48.0894309, + "lon": -1.6333097, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11064555826, + "lat": 48.0893958, + "lon": -1.6332623, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11065030250, + "lat": 45.1840498, + "lon": 0.7742067, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Boulazac-Isle-Manoire", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065030344, + "lat": 44.8541537, + "lon": -0.0633948, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Saint-Magne-de-Castillon", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065043099, + "lat": 43.5440766, + "lon": -1.0759828, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Cauneille", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065052090, + "lat": 44.86748, + "lon": -0.4980093, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Artigues-près-Bordeaux", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065075610, + "lat": 45.1460564, + "lon": 1.4748791, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra Brive-la-Gaillarde", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065084308, + "lat": 44.0403589, + "lon": 1.0048184, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "12", + "fee": "yes", + "name": "Electra - A62 - Aire de Garonne ->Toulouse", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065084332, + "lat": 44.040432, + "lon": 1.0039798, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Siemens", + "capacity": "12", + "fee": "yes", + "name": "Electra - A62 - Aire de Garonne ->Bordeaux", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "12", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065086091, + "lat": 43.4254012, + "lon": 5.2517188, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Vitrolles", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065095894, + "lat": 43.4470076, + "lon": 5.2430487, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Aix-en-Provence", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065116106, + "lat": 43.8148402, + "lon": 4.3435928, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Nîmes", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065126769, + "lat": 43.3920802, + "lon": 5.2564456, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Electra - A55 - Aire de Gignac Rebuty", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "8", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065130387, + "lat": 43.3792389, + "lon": 5.355989, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Marseille", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "1", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "4", + "socket:type2_combo:output": "225 kW" + } + }, + { + "type": "node", + "id": 11065146097, + "lat": 47.4363085, + "lon": -0.5099674, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Les Ponts-de-Cé", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065147635, + "lat": 45.6558568, + "lon": 5.9128841, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Drumettaz-Clarafond", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065154741, + "lat": 45.0197905, + "lon": 4.8761832, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "28", + "fee": "yes", + "name": "Electra - A7 - Aire de Latitude 45", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:chademo": "2", + "socket:chademo:output": "50 kW", + "socket:type2_combo": "28", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065183321, + "lat": 46.3306756, + "lon": -0.4691489, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Niort", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11065186205, + "lat": 47.4684733, + "lon": -0.5933946, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "4", + "fee": "yes", + "name": "Electra - Angers", + "note": "accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "150 kW" + } + }, + { + "type": "node", + "id": 11065366908, + "lat": 49.302886, + "lon": 1.009082, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065413223, + "lat": 45.4429296, + "lon": 4.4007346, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "network": "e-Totem" + } + }, + { + "type": "node", + "id": 11065634777, + "lat": 49.6619104, + "lon": -1.829687, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "EVBox" + } + }, + { + "type": "node", + "id": 11065912309, + "lat": 43.8162545, + "lon": 4.3466024, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065939894, + "lat": 43.72956, + "lon": -0.2668849, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065939895, + "lat": 43.729545, + "lon": -0.2669827, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065939896, + "lat": 43.7295356, + "lon": -0.2670545, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065939897, + "lat": 43.7295262, + "lon": -0.2671376, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065956027, + "lat": 43.5592681, + "lon": 1.5034822, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065956028, + "lat": 43.559302, + "lon": 1.5034406, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065956029, + "lat": 43.5593519, + "lon": 1.5033853, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065959110, + "lat": 43.4189223, + "lon": 3.2278543, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11065959111, + "lat": 43.4189136, + "lon": 3.227792, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11066699777, + "lat": 49.599181, + "lon": 1.1068273, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11066971850, + "lat": 49.0362928, + "lon": 3.9506669, + "tags": { + "amenity": "charging_station", + "socket:chademo": "yes", + "socket:type1_combo": "yes", + "socket:type2": "yes" + } + }, + { + "type": "node", + "id": 11066998050, + "lat": 49.7148993, + "lon": 1.0984572, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11067221956, + "lat": 49.5224755, + "lon": 1.2470731, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11067296702, + "lat": 49.0823949, + "lon": 3.9463784, + "tags": { + "amenity": "charging_station", + "socket:type2": "2", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 11067322115, + "lat": 44.8149056, + "lon": 4.488824, + "tags": { + "amenity": "charging_station", + "brand": "eborn", + "fee": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 11067383770, + "lat": 49.1952375, + "lon": 2.4648585, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "operator": "Mouv Oise", + "socket:type2": "4" + } + }, + { + "type": "node", + "id": 11067734198, + "lat": 43.3151651, + "lon": -0.3584241, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Evbox", + "capacity": "2", + "operator": "EVBox", + "operator:wikidata": "Q28406392" + } + }, + { + "type": "node", + "id": 11067734199, + "lat": 43.3151251, + "lon": -0.3585321, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "EVbox", + "capacity": "2", + "description": "3 prises : une AC 43 Kilowatts, et deux DC 50 Kilowatts chacune", + "fee": "yes", + "motorcar": "yes", + "operator": "EVBox", + "operator:wikidata": "Q28406392" + } + }, + { + "type": "node", + "id": 11067756505, + "lat": 45.7175347, + "lon": 4.9274029, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Cours du Professeur Jean Bernard", + "operator": "Izivia", + "operator:wikidata": "Q86671322", + "operator:wikipedia": "fr:Izivia", + "ref": "SPR02A" + } + }, + { + "type": "node", + "id": 11067782752, + "lat": 49.3177711, + "lon": 0.8380539, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "construction": "yes" + } + }, + { + "type": "node", + "id": 11069288341, + "lat": 48.7464482, + "lon": -2.9813302, + "tags": { + "amenity": "charging_station", + "bicycle": "no", + "capacity": "2", + "motorcar": "yes", + "socket:type2": "1", + "socket:type2:output": "32 A" + } + }, + { + "type": "node", + "id": 11069354819, + "lat": 49.3596289, + "lon": -0.8406254, + "tags": { + "amenity": "charging_station", + "image": "https://i.imgur.com/o8cqLbu.jpg", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11069987805, + "lat": 48.5782539, + "lon": 1.9903708, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT2211", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11070476951, + "lat": 48.5308276, + "lon": -2.012744, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Ionity", + "brand:wikidata": "Q42717773", + "capacity": "6", + "fee": "yes", + "name": "Ionity Plouer sur Rance", + "network": "Ionity", + "opening_hours": "24/7", + "operator": "Ionity", + "socket:type2_combo": "6", + "socket:type2_combo:output": "350 kW" + } + }, + { + "type": "node", + "id": 11070605905, + "lat": 48.6266898, + "lon": 2.2627544, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "CPS", + "operator": "Izivia", + "owner": "CPS", + "ref:EU:EVSE": "FR*CPS*PCAPS1112", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11070755666, + "lat": 44.9728448, + "lon": 4.9570305, + "tags": { + "addr:street": "rue des Chabottes", + "amenity": "charging_station", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 11070811294, + "lat": 48.9541922, + "lon": 4.3616294, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11070884405, + "lat": 48.5835276, + "lon": 1.9867766, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT2112", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11070946729, + "lat": 49.275613, + "lon": 1.2242095, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11070954848, + "lat": 47.4011728, + "lon": -0.4585617, + "tags": { + "amenity": "charging_station", + "authentication:app": "yes", + "authentication:membership_card": "yes", + "fee": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 11070977005, + "lat": 47.4194682, + "lon": -1.0156963, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11071208897, + "lat": 49.3426199, + "lon": 1.1014261, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11071414343, + "lat": 43.489988, + "lon": 3.7950971, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11071445680, + "lat": 49.3774448, + "lon": 1.1093873, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "covered": "no", + "fee": "yes", + "operator": "Rouen métropole" + } + }, + { + "type": "node", + "id": 11071616343, + "lat": 46.2715777, + "lon": 5.285309, + "tags": { + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "2", + "man_made": "charge_point", + "ref": "49348;49347", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 11071616344, + "lat": 46.2715895, + "lon": 5.2852486, + "tags": { + "amenity": "charging_station", + "brand": "EVBOX", + "capacity": "2", + "man_made": "charge_point", + "ref": "50531;50532", + "socket:type2": "2", + "socket:type2:output": "22", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 11071635027, + "lat": 43.4818197, + "lon": -1.4461137, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "8", + "fee": "yes", + "name": "Electra - Saint Pierre d_Irube", + "note": "4 of 8 socks active. Accurate position needed", + "operator": "Electra", + "payment:app": "yes", + "payment:contactless": "yes", + "socket:type2_combo": "4", + "socket:type2_combo:output": "300 kW" + } + }, + { + "type": "node", + "id": 11071952531, + "lat": 48.0339902, + "lon": 0.1626954, + "tags": { + "access": "private", + "amenity": "charging_station", + "capacity": "2", + "description": "Borne de recharge réservée à la Mairie" + } + }, + { + "type": "node", + "id": 11072068365, + "lat": 49.410964, + "lon": 3.5161086, + "tags": { + "access": "customers", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11072666885, + "lat": 45.5753851, + "lon": 5.7994038, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11072918807, + "lat": 44.085089, + "lon": 1.6262088, + "tags": { + "amenity": "charging_station", + "survey:date": "2023-07-28" + } + }, + { + "type": "node", + "id": 11072918915, + "lat": 44.0855377, + "lon": 1.6259384, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "survey:date": "2023-07-28" + } + }, + { + "type": "node", + "id": 11072919407, + "lat": 44.0846998, + "lon": 1.6259061, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "survey:date": "2023-07-28" + } + }, + { + "type": "node", + "id": 11072919807, + "lat": 44.0852975, + "lon": 1.6257478, + "tags": { + "amenity": "charging_station", + "capacity": "4", + "survey:date": "2023-07-28" + } + }, + { + "type": "node", + "id": 11073103189, + "lat": 45.5899663, + "lon": 5.2539974, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92376*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073103190, + "lat": 45.589963, + "lon": 5.2539957, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92346*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073103191, + "lat": 45.5900025, + "lon": 5.2540262, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92344*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073103192, + "lat": 45.5900057, + "lon": 5.2540279, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92353*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073103193, + "lat": 45.5900458, + "lon": 5.2540559, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92379*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073103194, + "lat": 45.5900906, + "lon": 5.2540827, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92383*0", + "socket:type2": "1", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 11073103195, + "lat": 45.590049, + "lon": 5.2540575, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92380*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073103196, + "lat": 45.5900873, + "lon": 5.254081, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92373*0", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073103197, + "lat": 45.5901866, + "lon": 5.2541412, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref": "18B92372", + "socket:type2": "1", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 11073103198, + "lat": 45.5901899, + "lon": 5.2541429, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref": "18B92378", + "socket:type2": "1", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 11073103199, + "lat": 45.5902483, + "lon": 5.2541794, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92375*0", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073103200, + "lat": 45.5902451, + "lon": 5.2541777, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92377*0", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073103201, + "lat": 45.5901836, + "lon": 5.2541647, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92382*0", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073103202, + "lat": 45.5901803, + "lon": 5.254163, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92374*0", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073103203, + "lat": 45.5900782, + "lon": 5.2541016, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref": "18B92384", + "socket:type2": "1", + "socket:type2:output": "11 kW" + } + }, + { + "type": "node", + "id": 11073103204, + "lat": 45.5900815, + "lon": 5.2541033, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92385*0", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073133505, + "lat": 45.59004, + "lon": 5.2540782, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92349*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073133506, + "lat": 45.5900367, + "lon": 5.2540765, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92363*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073133507, + "lat": 45.5899999, + "lon": 5.2540525, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92351*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073133508, + "lat": 45.5899966, + "lon": 5.2540508, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92381*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073133509, + "lat": 45.5899606, + "lon": 5.2540267, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref:EU:EVSE": "FR*TNM*E18B92345*0", + "socket:type2": "1", + "socket:type2:output": "22 kW" + } + }, + { + "type": "node", + "id": 11073133510, + "lat": 45.5899579, + "lon": 5.2540253, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "operator": "Shell Recharge", + "ref": "09940161", + "socket:type2": "1", + "socket:type2:output": "7 kW" + } + }, + { + "type": "node", + "id": 11073709205, + "lat": 48.5532001, + "lon": 1.9101995, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Rambouillet Territoires", + "operator": "Izivia", + "owner": "Rambouillet Territoires", + "ref:EU:EVSE": "FR*A05*PRMBT2311", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073709206, + "lat": 47.8650043, + "lon": 1.9198608, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Alizé Liberté", + "operator": "Bouygues Énergies et Services", + "owner": "Bouygues Énergies et Services", + "ref:EU:EVSE": "FR*BE2*P45234001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073709207, + "lat": 47.9114809, + "lon": 1.8773746, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PZIWOWMFJOR", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073710105, + "lat": 48.1388001, + "lon": 3.1360388, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "BFC-SDEY - CITEOS Viry Châtillon Rapide", + "ref:EU:EVSE": "FR*S89*POLVXFNK8GY", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073710107, + "lat": 48.5786514, + "lon": 7.7726984, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Elsass Recharge", + "ref:EU:EVSE": "FR*FR1*POOWFA5K8PB", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711905, + "lat": 47.9053248, + "lon": 1.9098616, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PPSUDUL9MIJ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711906, + "lat": 47.9052291, + "lon": 1.9101948, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PH5QTPJILRB", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711907, + "lat": 47.9039133, + "lon": 1.9030716, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PO075GC5TMJ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711908, + "lat": 47.9027981, + "lon": 1.9036952, + "tags": { + "amenity": "charging_station", + "capacity": "19", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P45234001", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711909, + "lat": 48.5783391, + "lon": 7.759113, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Elsass Recharge", + "ref:EU:EVSE": "FR*FR1*PV2WYTXUEVW", + "socket:chademo": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711910, + "lat": 48.5761, + "lon": 7.7530103, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Eurométropole", + "ref:EU:EVSE": "FR*FR1*PBRYYWZ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073711911, + "lat": 48.5856, + "lon": 7.7490306, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Parcus, Broglie", + "ref:EU:EVSE": "FR*FR1*PVAHGUF", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073713505, + "lat": 47.9051441, + "lon": 1.9105261, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PBXRRLVQJLH", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073713506, + "lat": 47.9007396, + "lon": 1.9012624, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PI6GJEEHANQ", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073713507, + "lat": 47.9053752, + "lon": 1.9025123, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PFGU7G4ZMF1", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073713508, + "lat": 48.5821152, + "lon": 7.7459621, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Power Dot France", + "operator": "Power Dot France", + "owner": "Power Dot France", + "ref:EU:EVSE": "FR*PD1*PMRGSTB", + "socket:type2": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073717205, + "lat": 47.9028758, + "lon": 1.9046876, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Orléans Métropole", + "ref:EU:EVSE": "FR*M45*PMH4YHU6SK6", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073717206, + "lat": 48.5808092, + "lon": 7.7614117, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "no", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Eurométropole", + "ref:EU:EVSE": "FR*FR1*PJGMSKN", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073782205, + "lat": 48.5855219, + "lon": 7.7727842, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Elsass Recharge", + "ref:EU:EVSE": "FR*FR1*PZU4GWOCMMU", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073782206, + "lat": 48.5811996, + "lon": 7.7562806, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Parcus, Bateliers", + "ref:EU:EVSE": "FR*FR1*PZMADJK", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073784205, + "lat": 48.5760783, + "lon": 7.7531558, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Elsass Recharge", + "ref:EU:EVSE": "FR*FR1*PUHG7FBMQYH", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073787205, + "lat": 48.5968051, + "lon": 7.7354693, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Samins, Marché Gare Strasbourg", + "ref:EU:EVSE": "FR*FR1*PKJAUUA", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073787206, + "lat": 48.5843012, + "lon": 7.7441597, + "tags": { + "amenity": "charging_station", + "capacity": "23", + "motorcar": "yes", + "network": "Indigo France", + "operator": "Bouygues Énergies et Services", + "owner": "Indigo France", + "ref:EU:EVSE": "FR*P07*P67482002", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073787207, + "lat": 48.5783391, + "lon": 7.7401686, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "Elsass Recharge", + "ref:EU:EVSE": "FR*FR1*PJIRIL0QKRW", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073787208, + "lat": 48.5418415, + "lon": 7.7848434, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "motorcar": "yes", + "network": "QOVOLTIS", + "operator": "QOVOLTIS", + "owner": "JANEC EVS", + "ref:EU:EVSE": "FR*QOV*P6700001", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11073787305, + "lat": 48.5974969, + "lon": 7.7357027, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "network": "Freshmile", + "operator": "Freshmile SAS", + "owner": "E.Leclerc, Strasbourg", + "ref:EU:EVSE": "FR*LE2*PQFEYWXCVA1", + "socket:type2": "yes", + "socket:typee": "yes", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11074077770, + "lat": 48.1071678, + "lon": -1.6745719, + "tags": { + "access": "customers", + "amenity": "charging_station", + "brand": "bea", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "sde35", + "payment:account_cards": "yes", + "payment:app": "yes", + "socket:chademo": "1", + "socket:chademo:output": "24 kw", + "socket:type2": "1", + "socket:type2:output": "22 kw", + "socket:type2_combo": "1", + "socket:type2_combo:output": "24 kw", + "website": "https://www.ouestcharge.fr" + } + }, + { + "type": "node", + "id": 11074090033, + "lat": 48.646586, + "lon": 7.4514878, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "source": "BDOrtho IGN - available 2023 at the latest" + } + }, + { + "type": "node", + "id": 11075164732, + "lat": 44.5052491, + "lon": 1.6557875, + "tags": { + "access": "yes", + "amenity": "charging_station", + "brand": "Révéo", + "capacity": "2", + "charge": "0,55€ le kWh puis 0,12€/min au-delà d'une heure pour les non abonnés;0,4€ le kWh et 0,075€ le kWh après une heure pour les abonnés", + "fee": "yes", + "operator": "Révéo, territoire d'énergie Lot", + "payment:app": "yes", + "payment:contactless": "yes", + "payment:credit_cards": "yes" + } + }, + { + "type": "node", + "id": 11076056700, + "lat": 45.8044994, + "lon": 4.7819834, + "tags": { + "amenity": "charging_station", + "description": "Charge lente" + } + }, + { + "type": "node", + "id": 11076056701, + "lat": 45.8045322, + "lon": 4.7819549, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Charge rapide" + } + }, + { + "type": "node", + "id": 11076056702, + "lat": 45.8045649, + "lon": 4.7819265, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Charge rapide" + } + }, + { + "type": "node", + "id": 11076056703, + "lat": 45.8045976, + "lon": 4.781898, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "description": "Charge rapide" + } + }, + { + "type": "node", + "id": 11076086126, + "lat": -20.9172, + "lon": 55.5298, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "contact@car2plug.fr", + "fee": "no", + "name": "EASYPLUG SEMIR LE PORT", + "network": "EASYPLUG", + "note": "Paiement par smartphone, et applications", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "phone": "0988991011", + "ref": "JNNF0FAFIC", + "ref:EU:EVSE": "FRC2P001602", + "reservation": "false", + "socket:chademo": "no", + "socket:type2": "yes", + "socket:type2_cable": "no", + "socket:type2_combo": "no", + "socket:typee": "yes", + "start_date": "2021-09-01" + } + }, + { + "type": "node", + "id": 11076086127, + "lat": -20.8982, + "lon": 55.5675, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "contact@car2plug.fr", + "fee": "no", + "name": "EASYPLUG SEMIR LE PORT", + "network": "EASYPLUG", + "note": "Paiement par smartphone, et applications", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "phone": "0988991011", + "ref": "JNNF0FAFIC", + "ref:EU:EVSE": "FRC2P001602", + "reservation": "false", + "socket:chademo": "no", + "socket:type2": "yes", + "socket:type2_cable": "no", + "socket:type2_combo": "no", + "socket:typee": "yes", + "start_date": "2021-09-01" + } + }, + { + "type": "node", + "id": 11076086128, + "lat": -20.8976211, + "lon": 55.5603717, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "1", + "email": "contact@car2plug.fr", + "fee": "no", + "name": "EASYPLUG SEMIR LE PORT", + "network": "EASYPLUG", + "note": "Paiement par smartphone, et applications", + "opening_hours": "24/7", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "901985804", + "phone": "0988991011", + "ref": "JNNF0FAFIC", + "ref:EU:EVSE": "FRC2P001602", + "reservation": "false", + "socket:chademo": "no", + "socket:type2": "yes", + "socket:type2_cable": "no", + "socket:type2_combo": "no", + "socket:typee": "yes", + "start_date": "2021-09-01" + } + }, + { + "type": "node", + "id": 11076171020, + "lat": 43.237084, + "lon": 5.4093097, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Total Energies" + } + }, + { + "type": "node", + "id": 11076345188, + "lat": 50.2805865, + "lon": 3.9069387, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805024540", + "ref:EU:EVSE": "FR*H02*P59225002", + "socket:chademo": "2", + "socket:type2": "2", + "socket:type2_combo": "2", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11076938255, + "lat": 43.887153, + "lon": -0.4886359, + "tags": { + "amenity": "charging_station", + "brand": "I-Charging", + "capacity": "4" + } + }, + { + "type": "node", + "id": 11077415926, + "lat": 47.5008939, + "lon": -1.579982, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11078232305, + "lat": 42.974563, + "lon": -0.1897247, + "tags": { + "addr:postcode": "65400", + "addr:street": "Route d'Azun", + "amenity": "charging_station", + "name": "Aucun", + "operator": "SD65" + } + }, + { + "type": "node", + "id": 11078562045, + "lat": 49.0056124, + "lon": 2.6045063, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11079143870, + "lat": 47.2208168, + "lon": -1.5195457, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 11079143874, + "lat": 47.2206272, + "lon": -1.5196431, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 11079143875, + "lat": 47.220634, + "lon": -1.5196075, + "tags": { + "access": "private", + "amenity": "charging_station", + "fee": "no" + } + }, + { + "type": "node", + "id": 11079143882, + "lat": 47.2202321, + "lon": -1.5181558, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11079143883, + "lat": 47.2202239, + "lon": -1.5181799, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11079143884, + "lat": 47.2202141, + "lon": -1.5182092, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11079143885, + "lat": 47.2202047, + "lon": -1.5182372, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11079143886, + "lat": 47.2201947, + "lon": -1.5182671, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11079447470, + "lat": 47.2703005, + "lon": -1.6249247, + "tags": { + "amenity": "charging_station", + "capacity": "2" + } + }, + { + "type": "node", + "id": 11080175599, + "lat": 49.7690448, + "lon": 4.340674, + "tags": { + "access": "yes", + "amenity": "charging_station", + "bicycle": "yes", + "fee": "no", + "operator": "Ardenne Thiérache" + } + }, + { + "type": "node", + "id": 11080395273, + "lat": 45.5038773, + "lon": 4.7487449, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 11080417473, + "lat": 45.5518149, + "lon": 4.7182207, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22 kW", + "socket:typee": "2" + } + }, + { + "type": "node", + "id": 11080492023, + "lat": 45.5641235, + "lon": 4.804524, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 11080581648, + "lat": 45.4876948, + "lon": 4.8100297, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 11080607989, + "lat": 45.4957283, + "lon": 4.8219842, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 11080672739, + "lat": 45.5248754, + "lon": 4.8656491, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 11080732304, + "lat": 44.8643613, + "lon": 5.8611431, + "tags": { + "amenity": "charging_station", + "capacity": "1", + "fee": "yes", + "motorcar": "yes", + "name": "Borne de charge rapide La Salle en Beaumont", + "network": "E Born", + "opening_hours": "24/7", + "socket:chademo": "1", + "socket:chademo:output": "50", + "socket:type2": "1", + "socket:type2:output": "44", + "socket:type2_combo": "1", + "socket:type2_combo:output": "50" + } + }, + { + "type": "node", + "id": 11080865561, + "lat": 48.8758257, + "lon": 2.3095056, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11081024669, + "lat": 48.7326885, + "lon": -3.1559344, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11081150145, + "lat": 48.6637415, + "lon": -1.9884994, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11081215984, + "lat": 45.4611005, + "lon": 4.7648395, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "operator": "SYDER", + "socket:type2": "2", + "socket:type2:output": "22" + } + }, + { + "type": "node", + "id": 11081245245, + "lat": 42.1608144, + "lon": 9.5522618, + "tags": { + "amenity": "charging_station", + "description": "In the campsite of Riva Bella.", + "name": "Freshmile Charging Station", + "website": "https://www.freshmile.com/en/" + } + }, + { + "type": "node", + "id": 11081369869, + "lat": 42.1153698, + "lon": 9.5135293, + "tags": { + "amenity": "charging_station", + "name": "DRIVECO Charging Station", + "website": "https://driveco.com/en/" + } + }, + { + "type": "node", + "id": 11081633401, + "lat": 48.7763054, + "lon": -3.0484934, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11081893973, + "lat": 46.1887348, + "lon": -1.0642272, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11082959242, + "lat": 44.9357999, + "lon": 1.6069216, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11083330366, + "lat": 43.6720883, + "lon": 4.1406295, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 11083330367, + "lat": 43.67213, + "lon": 4.1406277, + "tags": { + "access": "yes", + "amenity": "charging_station", + "capacity": "2", + "fee": "yes", + "motorcar": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "node", + "id": 11083719505, + "lat": 43.3619373, + "lon": 2.1690764, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "fee": "yes" + } + }, + { + "type": "node", + "id": 11083753896, + "lat": 48.3175081, + "lon": 1.9996108, + "tags": { + "amenity": "charging_station", + "authentication:none": "yes", + "capacity": "2", + "email": "exploitation@waat.fr", + "fee": "no", + "name": "WAAT/FRWATLFD4WWPK5", + "network": "WAAT", + "note": "Autre paiements : compte prépayé.", + "opening_hours": "24/7", + "operator": "WAAT SAS | FR*WAT", + "owner:ref:FR:SIREN": "402923643", + "phone": "0680074537", + "reservation": "no", + "socket:chademo": "no", + "socket:type2": "yes", + "socket:type2_combo": "no", + "socket:typee": "no", + "start_date": "2022-01-12" + } + }, + { + "type": "node", + "id": 11084086222, + "lat": 46.1218654, + "lon": 3.4219029, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes", + "operator": "eborn", + "source": "survey", + "survey:date": "2023-07-30", + "wikimedia_commons": "File:Places véhicules électriques, parking rue de la Porte de France (Vichy) 2023-07-30.JPG" + } + }, + { + "type": "node", + "id": 11084968619, + "lat": 48.5211472, + "lon": -4.7573823, + "tags": { + "amenity": "charging_station" + } + }, + { + "type": "node", + "id": 11085304008, + "lat": 49.2179715, + "lon": 3.9982686, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "motorcar": "yes" + } + }, + { + "type": "node", + "id": 11085421503, + "lat": 48.8744893, + "lon": 2.3064685, + "tags": { + "amenity": "charging_station", + "fee": "yes", + "operator": "ubeeqo" + } + }, + { + "type": "node", + "id": 11085515992, + "lat": 48.8802435, + "lon": 2.3131246, + "tags": { + "amenity": "charging_station", + "capacity": "5", + "fee": "yes", + "operator": "ubeeqo", + "socket:type2": "5" + } + }, + { + "type": "node", + "id": 11085549731, + "lat": 48.8777624, + "lon": 2.3106917, + "tags": { + "amenity": "charging_station", + "capacity": "6", + "operator": "belib" + } + }, + { + "type": "node", + "id": 11085896398, + "lat": 45.7053749, + "lon": 2.2575826, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "name": "Borne de recharge" + } + }, + { + "type": "node", + "id": 11086748181, + "lat": 50.2725765, + "lon": 4.0054174, + "tags": { + "amenity": "charging_station", + "capacity": "2", + "email": "support@alizecharge.fr", + "motorcar": "yes", + "network": "Pass pass électrique", + "operator": "Bouygues Énergies et Services", + "operator:wikidata": "Q3046208", + "owner": "Communauté d'Agglomération Maubeuge Val de Sambre", + "phone": "+33805022797", + "ref:EU:EVSE": "FR*H02*P59514001", + "socket:type2": "4", + "socket:typee": "4", + "source": "data.gouv.fr:Etalab - 05/2022" + } + }, + { + "type": "node", + "id": 11086828158, + "lat": 50.645323, + "lon": 3.0979429, + "tags": { + "amenity": "charging_station" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/tests/main.test.js b/mapping_geojson_to_osm_tags/tests/main.test.js index 337932b7..f6372b85 100644 --- a/mapping_geojson_to_osm_tags/tests/main.test.js +++ b/mapping_geojson_to_osm_tags/tests/main.test.js @@ -1,36 +1,68 @@ -import finder from "../utils/finder.ts"; -import { Jest as mockUpload } from '@jest/environment' +import mapping_engine from '../mappings/engine' -xdescribe('mapping properties with rich mapping engine', () => { - test('remove all properties when mapping says so', () => { }); - test('maps simple key to key, and keep the same value', () => { }); - test('ignore one value', () => { }); - test('conditional value', () => { }); - test('conditional transform', () => { }); - test('conditional truthy transform', () => { }); - test('conditional falsy transform', () => { }); +describe('mapping properties with rich mapping engine', () => { + + test('do not add properties at all when there is nothing in tags of the mapping config', () => { + + }) + test('remove all properties when mapping says so', () => { + + let mappingRemoveAll = { + config_name: 'testing config', + config_author: 'tykayn ', + default_properties_of_point: { + 'amenity': 'charging_station' + }, + tags: { + nom_amenageur: { + key_converted: 'wheelchair', + conditional_values: { + 'Accessibilité inconnue': { + ignore_this_data: true, // ne pas ajouter de tag si la valeur est égale à Accessibilité inconnue. + }, + } + } + } + } + let Mapping_engine = new mapping_engine(mappingRemoveAll) + + let mapped_point = {} + list_of_points.forEach(feature_point => { + mapped_point = Mapping_engine.mapElementFromConf(feature_point) + + }) + + expect(mapped_point.properties).toBeFalsy(); + + }) + test('maps simple key to key, and keep the same value', () => { }) + test('ignore one value', () => { }) + test('conditional value', () => { }) + test('conditional transform', () => { }) + test('conditional truthy transform', () => { }) + test('conditional falsy transform', () => { }) }) xdescribe('filters points', () => { - test('filter no points', () => { }); - test('filter only one point', () => { }); - test('filter X number of points', () => { }); - test('filter city points', () => { }); - test('filter bounding box', () => { }); - test('filter combo, city', () => { }); - test('filter combo, city + bbox', () => { }); - test('filter combo, city + bbox + offset', () => { }); + test('filter no points', () => { }) + test('filter only one point', () => { }) + test('filter X number of points', () => { }) + test('filter city points', () => { }) + test('filter bounding box', () => { }) + test('filter combo, city', () => { }) + test('filter combo, city + bbox', () => { }) + test('filter combo, city + bbox + offset', () => { }) }) /** * thats a roadmap, yes */ xdescribe('infer domain of values from csv file', () => { - test('gets the list of unique values in column', () => { }); + test('gets the list of unique values in column', () => { }) }) xdescribe('infer domain of values from geojson file', () => { - test('gets the list of unique values in column', () => { }); + test('gets the list of unique values in column', () => { }) }) xdescribe('build mapping engine config from unique values', () => { - test('builds a valid mapping config', () => { }); + test('builds a valid mapping config', () => { }) }) \ No newline at end of file